overflow的使用

<div id="topFieldDiv" style="width: 650px; height: 150px; overflow-y: hidden">
   <div style="width: 800px; height: 200px"></div>
</div>

以上代码,当内容高度大于设定高度时,不出现上下滚动条。效果如下:

 


 overflow:scroll  如果元素中的内容超出了给定的宽度和高度属性,overflow 属性可以确定是否显示滚动条等行为。

overflow-y:hidden  对内容的上/下边缘进行裁剪

overflow-x:hidden  对内容的左/右边缘进行裁剪。

 

 

posted on 2017-08-04 17:53  儿时精神  阅读(437)  评论(0)    收藏  举报

导航