DIV CSS 佈局教程網

 DIV+CSS佈局教程網 >> 網頁腳本 >> HTML基礎知識 >> HTML和Xhtml >> html中設置讓div中的內容超出後自動顯示滾動條
html中設置讓div中的內容超出後自動顯示滾動條
編輯:HTML和Xhtml     
在html頁面中,我們有時需要讓div中的內容超出後自動顯示滾動條,我們可以這樣設置:

復制代碼代碼如下:
<div class="classlist">
<div class="autoScroll">
<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
XML學習教程| jQuery入門知識| AJAX入門| Dreamweaver教程| Fireworks入門知識| SEO技巧| SEO優化集錦|
Copyright © DIV+CSS佈局教程網 All Rights Reserved