[SOLVED-ish]Odd Issue with IE 7.0
Posted: Wed Jun 27, 2007 5:54 pm
feyd | Please use
Adding in:[/syntax]
where value is set to the correct value for IE, causes it to be displayed properly as it's picked up by IE only. However, it's not valid CSS.
Has anyone else come across this? And if so, what valid CSS could fix it?
Many thanks in advance.
Ian
feyd | Please use
Code: Select all
,Code: Select all
and [syntax="..."] tags where appropriate when posting code. Your post has been edited to reflect how we'd like it posted. Please read: [url=http://forums.devnetwork.net/viewtopic.php?t=21171]Posting Code in the Forums[/url] to learn how to do it too.[/color]
First of all please forgive me if this has already been posted and answered. If it has, please just point me in the direction of the post. I did search for it, but found nothing.
Right, I'm having this odd issue with Firefox 2.0.0.4 and Internet Explorer 7.0.5730.11. Basically, the code below, is different sizes in the two different browsers. Safari for Windows displays it the same way as Firefox, only IE is different
[syntax="html"]
<html>
<head>
<style type="text/css">
ul#list {
position:absolute;
margin:5px auto 10px auto;
left:22%;
top:715px;
width:726px;
font-family: Verdana;
font-size:10px;
border:1px solid #000;
}
ul#list li{
float:right;
display:inline;
color:#000;
list-style-type:none;
}
</style>
</head>
<body>
<ul id="list">
<li>test</li>
</ul>
</body>
</html>
Code: Select all
*width:value px;Has anyone else come across this? And if so, what valid CSS could fix it?
Many thanks in advance.
Ian
feyd | Please use
Code: Select all
,Code: Select all
and [syntax="..."] tags where appropriate when posting code. Your post has been edited to reflect how we'd like it posted. Please read: [url=http://forums.devnetwork.net/viewtopic.php?t=21171]Posting Code in the Forums[/url] to learn how to do it too.[/color]