In HTML pages, we sometimes need to automatically display a scroll bar after the content in a div exceeds the limit. We can set it like this: Copy code The code is as follows:<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> Then, set the style like this: Copy code The code is as follows:<style type="text/css"> .classlist { width: 300px; height: 20px; } .autoScroll { width:300px; height:100px; overflow:auto; } #rblClasses { margin-left: 20px; } </style> After setting, when the content displayed in the radiobutton exceeds the outermost div, a scroll bar will be automatically displayed, that is, the nested div |
<<: Initial summary of the beginner's website building tutorial
>>: Detailed explanation of how to use eslint in vue
The installation and configuration methods of MyS...
There is no doubt that containers have become an ...
Find two test machines: [root@docker1 centos_zabb...
1. Install Docker yum -y install docker-io The &q...
1.MySQL multiple instances MySQL multi-instance m...
virtualenv is a tool for creating isolated Python...
Official documentation: https://nginx.org/en/linu...
Overview (official has more detailed description)...
Many times when we process file uploads, such as ...
In the process of learning web design, I did not ...
Today I will take you through the history of ext4...
This article shares with you the specific code of...
Table of contents 1. Basic theory 1.1 Transaction...
Table of contents 1. Front-end routing implementa...
Use the FRAME property to control the style type ...