Tuesday, November 13, 2007

Border error

If you define a border as: border: #D5EEFB solid 1px;

Then IE6 and IE7 will break any rules after it. For this to work properly you have to define it in the "proper" order of:

border: solid #D5EEFB 1px;

Thursday, November 1, 2007

Links in bulleted list

In IE6, whenever you style links contained in a list. Do not use display:block. This produces a bug where the width is 100% instead of auto. The workaround to this is to float the links left. Then they will inherit display:block and their width will also be auto.