可能重複:
Embedding extra styles with noscript
Define css if javascript is not enabled如何在Javascript關閉的情況下定義CSS樣式?
我試圖定義只有在關閉了JavaScript特定CSS樣式。我使用:
<noscript>
<style type="text/css">
.needjs {display:none !important;}
.mwnojs { margin-top: 40px !important; }
</style>
</noscript>
當試圖驗證頁面的源代碼,我得到的錯誤「元素風格不允許作爲元素的子無腳本在這方面」。
那麼,我會如何去做這件事,同時保持我的標記有效?
Yuck。不要使用'!important'。 – gilly3
modernizer - http://modernizr.com/ – jsweazy
'!important'有什麼問題? – JROB