Guest User

Untitled

a guest
Jun 25th, 2018
94
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.82 KB | None | 0 0
  1. * html #nav li ul {
  2. left: -39px!important;
  3. border: 1px solid red;
  4. }
  5.  
  6. *+html #nav li ul {
  7. left: -39px!important;
  8. }
  9.  
  10. <!--[if gte IE 8]>
  11. <style>
  12. (your style here)
  13. </style>
  14. <![endif]-->
  15.  
  16. /* IE8 Standards-Mode Only */
  17. .test { color /***/: blue9 }
  18.  
  19. /* All IE versions, including IE8 Standards Mode */
  20. .test { color: blue9 }
  21.  
  22. #nav li ul {
  23. left: -39px/ !important;
  24. }
  25.  
  26. #nav li ul {
  27. *left: -7px !important; /* IE 7 (IE6 also uses this, so put it first) */
  28. _left: -6px !important; /* IE 6 */
  29. left: -8px/ !important; /* IE 8-9 */
  30. }
  31.  
  32. <!--[if gte IE 8]>
  33. <div id="IE8Body">
  34. <![endif]-->
  35.  
  36. <!--[if gte IE 8]>
  37. </div>
  38. <![endif]-->
  39.  
  40. #IE8Body #nav li ul {}
  41.  
  42. HtmlGenericControl _body = (HtmlGenericControl)this.FindControl("pageBody");
  43. _body.Attributes.Add("class", Request.Browser.Platform + " " + Request.Browser.Browser + Request.Browser.MajorVersion);
  44.  
  45. .IE8 #nav ul li { .... }
  46. .IE7 #nav ul li { .... }
  47. .MacPPC.Firefox #nav ul li { .... }
  48.  
  49. .IE8 #container { .... }
  50.  
  51. * html #container { .... }
  52.  
  53. if (jQuery.browser.version==8.0) {
  54. $(results).css({
  55. 'left':'23px',
  56. 'top':'-253px'
  57. });
  58. }
  59.  
  60. #nav li ul:not(.stupidIE) { color:red }
  61.  
  62. p { font-family: Arial / !important; }
  63.  
  64. <link rel="stylesheet" type="text/css" media="screen" href="css/style.css" />
  65. <!--[if IE 7]><link rel="stylesheet" type="text/css" media="screen" href="css/ie7.css" /><![endif]-->
  66. <!--[if IE 6]><link rel="stylesheet" type="text/css" media="screen" href="css/ie6.css" /><![endif]-->
  67. -------------------------------------------------------------
  68.  
  69. <!--[if lt IE 7 ]> <body class="ie6"> <![endif]-->
  70. <!--[if IE 7 ]> <body class="ie7"> <![endif]-->
  71. <!--[if IE 8 ]> <body class="ie8"> <![endif]-->
  72. <!--[if !IE]>--> <body> <!--<![endif]-->
Add Comment
Please, Sign In to add comment