Posted by Andy Nagai on Oct 13, 2010
When you want to make a <ul> to list horizontally and to wrap you normally set the style display: inline-block. In IE 7 simply doing this will not make it display correctly. It will just display as one vertical column. You will need to add the following style attributes that are specific to IE to [...]
Posted by Andy Nagai on Oct 12, 2010
Some browsers will not show a table cell border or background if their is no actual content in the cell. You will need to set the following style to display cell formatting no matter if their is content or not. <style> .mytable td { empty-cells:show; } </style>
Posted by Andy Nagai on Sep 06, 2010
This is one of the most common ways to vertically align a div or any block type object within a div. The child object has to be a fixed height for this to work. Only block objects such as div, img or p tags can have a fixed height. You can also make inline type [...]
Posted by Andy Nagai on Sep 04, 2010
The following example will show how to center a dynamic div of unknown width within another div. Since there is no dimensions you cannot center using margin: auto or text-align: center for Internet Explorer. You will have to do some css trickery to center it for IE. Will be centering a crude menu bar within [...]