Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Chris Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Show CSS only in IE

Status
Not open for further replies.

jmcg

Technical User
Jun 30, 2000
223
GB
I have been googling to find the solution to this and have tried the star hack but cannot seem to get it to work.
Code:
* html body div#local ul {
	margin-left:20px;
	list-style: none;
}

#local ul {
	margin-left: -15px;
	list-style: none;
}
I have tried all permutations on the * line but each time it still views the -15 and the text is out of line.
Any suggestions, don't know much about this level of CSS as it is a open source template i'm using.
 
The star hack only works on version 6 and earlier.

The star hack works in IE 7 as well as previous versions. The underscore hack doesn't work in IE 7.

Try this FAQ for more on conditional comments:

faq215-6625

Dan



Coedit Limited - Delivering standards compliant, accessible web solutions

[tt]Dan's Page [blue]@[/blue] Code Couch
[/tt]
 
Thanks, worked with doing the:
<!--[if lt IE 7]>
<link href="iexplore.css" type="text/css" rel="stylesheet" />
<![endif]-->
in the header.
 
The star hack works in IE 7 as well as previous versions.
Not true.

Try loading this document in IE7:
Code:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "[URL unfurl="true"]http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">[/URL]
<html xmlns="[URL unfurl="true"]http://www.w3.org/1999/xhtml">[/URL]
<head>
  <title>Star Hack Test</title>
  <style type="text/css">
    * html span { display: none; }
  </style>
</head>
<body>
  <p>I've <span>not </span>been star hacked!</p>
</body>
</html>
You'll see it says the same as Firefox does: "I've not been star hacked". Try it in IE6 and the "not" disappears.

-- Chris Hunt
Webmaster & Tragedian
Extra Connections Ltd
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top