/ Published in: CSS
Here are the basic CSS properties needed to start a layout that looks the same in Firefox (1.5ish) and IE (5-6)
Expand |
Embed | Plain Text
body { font-size: 62.5%; /* This allows you to set subsequent font sizes using em heights. */ } * { margin: 0 auto; padding: 0; min-width: 0px; } #Element { text-align: center; width: 50%; position: relative; left: 25%; margin-left -25%; }
You need to login to post a comment.
