Css source code for scrollbars
Css source code for scrollbars
<html>
<head>
<style type = "text/css">
.scroll {
display:block;
border: 1px solid red;
padding:5px;
margin-top:5px;
width:300px;
height:50px;
overflow:scroll;
}
.auto {
display:block;
border: 1px solid red;
padding:5px;
margin-top:5px;
width:300px;
height:50px;
overflow:auto;
}
</style>
</head>
<body>
<p>Example of scroll value:</p>
<div class = "scroll">
tech.thinkforu.org is only for free source code
</div>
<br />
<p>Example of auto value:</p>
<div class = "auto">
this is the example of auto scroller bar in css in html
</div>
</body>
</html>
Comments
Post a Comment