好的,這是我第一次使用html5boilerplate,但不能從我的css文件中獲取IE樣式。html5boilerplate IE有條件不工作
我有這樣的標題(每頁的設置)
<!doctype html>
<!-- paulirish.com/2008/conditional-stylesheets-vs-css-hacks-answer-neither/ -->
<!--[if lt IE 7]> <html class="no-js lt-ie9 lt-ie8 lt-ie7" lang="en"> <![endif]-->
<!--[if IE 7]> <html class="no-js lt-ie9 lt-ie8" lang="en"> <![endif]-->
<!--[if IE 8]> <html class="no-js lt-ie9" lang="en"> <![endif]-->
<!-- Consider adding a manifest.appcache: h5bp.com/d/Offline -->
<!--[if gt IE 8]><!--> <html class="no-js" lang="en"> <!--<![endif]-->
<head>
,在我的樣式表我有
#container { float:right; margin-top: 0px; }
.ie6 #container { margin-top: 5px; }
.ie7 #container { margin-top: 10px; }
.ie8 #container { margin-top: 15px; }
,它不工作。這真的很簡單,我錯過了什麼。
您的建議表示讚賞。
非常感謝你,現在這麼簡單,一直在瘋狂工作,錯過了這一點。非常感激。 – Ant