Add Scroll On Text/Content Using CSS+HTML
-----------------------------Content in html file-------------------------------------
<body>
<form id="form1" runat="server">
<div class="clsScroll">
CONTENT
</div>
</form>
</body>
-------------------------------CSS---------------------------------------------------
.clsScroll{
height : 300px;
width : 400px;
background : yellow;
overflow-x : hidden;
overflow-y : auto;
}
Comments
Post a Comment