Forcing a Scrollbar for centered web pages.

Vishalneeraj-24503
Posted by Vishalneeraj-24503 under CSS 3 category on | Points: 40 | Views : 928
Write below CSS code which will use for forcing div to be scrolled:-
#div_main
{
position:absolute;
top:0;
bottom:-0.1px;
width:1em;
z-index:-1;
}

<div id = "div_main">
</div>

Comments or Responses

Login to post response