Monday, January 19th, 2009
Styling HTML5 markup in IE
Simon Pieters first posted on how to support new elements in IE. “However, if the user has scripting disabled, the layout would probably fall apart badly.”
So, he has a new post that shows us what to do with no script:
There are some tricks to work around the broken DOM and limited styling in IE:
- Know what the DOM looks like and target other elements than the new elements for styling.
- Use the universal selector (
*) to target the right element.- Use
noscript.












Leave a comment