less巢狀

技術小美發表於2017-11-12

示例

#header{
	h1{
		font-size:26px;
		font-weight:bold;
	}
	.menu{
		width:200px;
		height:200px;
		ul>li{
			list-style:none;
		}
	}
}


說明

#header表示一個ID

h1{
		font-size:26px;
		font-weight:bold;
	}表示#header下的h1元素
	
.menu{
		width:200px;
		height:200px;
		ul>li{
			list-style:none;
		}
	}表示#header下的class="menu"的元素
依次類推


生成的css檔案(example3.css)

#header h1 {
  font-size: 26px;
  font-weight: bold;
}
#header .menu {
  width: 200px;
  height: 200px;
}
#header .menu ul > li {
  list-style: none;
}


在html使用css(less3.html)


</html>

本文轉自 素顏豬 51CTO部落格,原文連結:
http://blog.51cto.com/suyanzhu/1900684


相關文章