Forum Moderators: not2easy
I have to specify a width: 100% so I can use overflow: hidden. Here is the code:
div.liquid {
padding: 16px;
...
}
div.linklist {
overflow: hidden;
width: 100%;
...
}
The div.liquid is the main area of a two-column layout I set up. What will the width of the div.linklist be in IE5.x Win? I bet it will be the same as the standard box model plus 32px which means I'll get a nasty horizontal scroll bar.
I guess I can take the padding off the div.liquid and margin or pad whatever is inside it.
What do you think?
Take care,
Cyrus