html中设置让div中的内容超出后自动显示滚动条
html中设置让div中的内容超出后自动显示滚动条
发布时间:2016-12-27 来源:查字典编辑
摘要:在html页面中,我们有时需要让div中的内容超出后自动显示滚动条,我们可以这样设置:然后,样式中这样设置:.classlist{width...

在html页面中,我们有时需要让div中的内容超出后自动显示滚动条,我们可以这样设置:

<div>

<div>

<asp:RadioButtonList ID="rblClasses" runat="server" DataTextField="className" DataValueField="classID"

ForeColor="#FF4040">

</asp:RadioButtonList>

<asp:ImageButton ID="imgSure" runat="server" ImageUrl="~/images/c_sure.jpg" />

<asp:ImageButton ID="imgClose" runat="server" ImageUrl="~/images/c_close.jpg" />

</div>

</div>

然后,样式中这样设置:

<style type="text/css">

.classlist

{

width: 300px;

height: 20px;

}

.autoScroll

{

width:300px;

height:100px;

overflow:auto;

}

#rblClasses

{

margin-left: 20px;

}

</style>

设置后,当radiobutton中显示的内容超出最外围的div时,将自动显示滚动条,即嵌套div

推荐文章
猜你喜欢
附近的人在看
推荐阅读
拓展阅读
相关阅读
网友关注
最新XHTML学习
热门XHTML学习
网页设计子分类