• 0

IE rendering site wrong


Question

3 answers to this question

Recommended Posts

  • 0

It this problem confined to IE7 and above? IE6 famously has issues with doubling margins on divs with specfic positionings. The solution could be to create as seperate CSS snippet that modifies the margin for that element for IE6 users. For example:

<!--[if IE 6]>
	<style type="text/css">
		#element {
			margin:10px;
		}
	</style>
<![endif]--> 

This is the only issue that comes to mind.

Link to comment
Share on other sites

This topic is now closed to further replies.
  • Recently Browsing   0 members

    • No registered users viewing this page.