To fix the double margin bug when floating elements in Internet Explorer 6, set the CSS display property for the floated elements to “inline”.
To fix the double margin bug when floating elements in Internet Explorer 6, set the CSS display property for the floated elements to “inline”.
When creating modal window pages in an application, use a separate style sheet to hide unnecessary elements on the pages.
When creating a clearing DIV, put an empty comment (<!– –>) inside of it to get the clearing to work in Internet Explorer 6 and below.
To get rid of the padding on radio buttons and check boxes in Internet Explorer 6 and below, give the field a defined height and width with the property “overflow:hidden”.
When loading TinyMCE controls, the “init” method must be called outside of any JQuery functions like “$(function(){})”.
To keep OL and UL list item bullets from disappearing behind elements floated to the left of them, add “overflow:hidden” to the CSS for the OL and UL elements.
To get indentions on SELECT list items, use the “text-indent” CSS property on the OPTION elements.
When using the Firebug Firefox plug-in to copy HTML from an existing page, right click the element you would like to get the HTML from and choose Copy innerHTML, not Copy HTML, as the latter option doesn’t format the HTML properly.
When creating buttons out of links and form input elements, if they share the same styles, the following issues must be addressed