实例首页
自学教程
IT工具箱
源代码
下载代码
上下布局
点击运行 >
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>CSS overflow 属性 实例 - 自学教程(runoops.com)</title> <style> div { width: 110px; height: 110px; border: thin solid black; overflow-x: hidden; overflow-y: hidden; } </style> </head> <body> <div> <p style="width:140px"> In my younger and more vulnerable years my father gave me some advice that I've been turning over in my mind ever since. 'Whenever you feel like criticizing anyone,' he told me, 'just remember that all the people in this world haven't had the advantages that you've had.' </p> </div> <p>Overflow-x指定是否要剪辑的左/右边缘的内容.</p> <p>Overflow-y指定是否要剪辑的顶部/底部边缘的内容</p> </body> </html>
运行结果: