This site uses cookies from Google to deliver its services, to personalize ads and to analyze traffic. Information about your use of this site is shared with Google. By using this site, you agree to its use of cookies. Learn More

Css Tricks to Show Or Hide Horizontal And Vertical Scroll Bar

Css Tricks to Show Or Hide Horizontal And Vertical Scroll Bar DOM parser,html,php,preg_replace,tags Css Tricks to Show Or Hide Horizontal And Vertical Scroll Bar

CSS tricks to show or hide horizontal and vertical scroll bar


Sometimes we need to add scroll bar to a div or span whenever text in the div or span get overflow. scroll bar is supported in all browsers like IE 5+, FF 3.5+, and Safari, Opera etc. To show scroll bar, we need to specify overflow property of css to "visible" or "auto".

Horizontal and Vertical Scroll Bar
 .scrollbar { overflow: auto; /*for horizontal and vertical scroll bars */ } 

Horizontal Scroll Bar
 .horizontal-scrollbar { overflow-x: auto; /*for horizontal scroll bar */ overflow-y: hidden; /*for hiding vertical scroll bar */ } 

Vertical Scroll Bar
 .vertical-scrollbar { overflow-x: hidden; /*for hiding horizontal scroll bar*/ overflow-y: auto; /*for vertical scroll bar*/ } 

Important to remember:
1. To show scroll bar always set overflow to "visible". It will show scroll bar whether text get overflow or not.
2. To show scroll bar only, when text get overflowed, set overflow property to "auto".

Ref: http://www.dotnet-tricks.com/Tutorial/css/G348190612-CSS-to-show-only-horizontal-and-vertical-scroll-bar-in-div.html

0 Response to "Css Tricks to Show Or Hide Horizontal And Vertical Scroll Bar"

Posting Komentar

Contact

Nama

Email *

Pesan *