LadynRed
-
best practice for floating divs?
When you use floats, you must clear those floats. The most commonly used method is to use either overflow: auto or overflow: hidden. With such a narrow column, it may not be necessary to float them inside the 130px left column. If you float the im…
-
width:100% + padding/margin question
If you don't give box2 a fixed width, it's going to fill the available space of it's parent by default ;)
-
getting a div on top of a div that has a picture
Just in case - z-index only works on positioned elements, using it on anything else is useless.
-
Fixed footer for IE6!
The only problem with your solution is that the expression statement can cause major memory problems. The problem with expressions is that they are evaluated more frequently than most people expect. Not only are they evaluated when the page is rend…
-
Left side column not displaying in IE6
The above depends on whether or not you have patched your version of IE6. In patches MS pushed out in the last year or so, they FIXED IE6's busted box model problem, leaving the other culprit - the hasLayout problem. For your column problem, w…