Click to See Complete Forum and Search --> : Tables : Horizontal Scrolling Trouble


PJCollins
05-17-2006, 09:20 PM
I need help with getting rid of a scrollbar in a table. I want to have the vertical scrollbar only, and hide the horizontal one. Sometimes, the horizontal one is hidden, and sometimes it isn't. Without the bottom table scrollbar, my website has a much cleaner look. Does anyone know how to get rid of the bottom, horizontal scrollbar?

The Little Guy
05-18-2006, 01:49 AM
Try this:
td
{
width: 200px;
height: 200px;
overflow: scroll;
}

PJCollins
05-18-2006, 05:11 PM
Thanks, but that doesn't get rid of the X scrollbar; it just makes it un-usable. Is there a way to eradicate the X scrollbar in HTML, or is it just possible in CSS?