Home | 簡體中文 | 繁體中文 | 雜文 | 打賞(Donations) | Github | OSChina 博客 | 雲社區 | 雲棲社區 | Facebook | Linkedin | 知乎專欄 | 視頻教程 | About

第 7 章 CSS Frameworks

目錄

7.1. 瀏覽器判斷
7.2. Sass: Syntactically Awesome Style Sheets
7.2.1.
7.3. Less
7.4. css 冗餘/廢棄樣式檢查
	
<style>
	html{filter:gray;}
	html{filter:progid:DXImageTransform.Microsoft.BasicImage(grayscale=1);}
</style>
	
	

7.1. 瀏覽器判斷

		
<!--[if IE 8]>
  <link rel="stylesheet" type="text/css" href="ie8.css">
<![endif]-->
<!--[if IE 7]>
  <link rel="stylesheet" type="text/css" href="ie7.css">
<![endif]-->
<!--[if IE 6]>
  <link rel="stylesheet" type="text/css" href="ie6.css">
<![endif]-->
		
		
		
<!--[if lt IE 7 ]><html class="ie6" lang="zh-cn"><![endif]-->
<!--[if IE 7 ]><html class="ie7" lang="zh-cn"><![endif]-->
<!--[if IE 8 ]><html class="ie8" lang="zh-cn"><![endif]-->
<!--[if IE 9 ]><html class="ie9" lang="zh-cn"><![endif]-->