码迷,mamicode.com
首页 > 其他好文 > 详细

less嵌套

时间:2017-02-23 22:57:31      阅读:162      评论:0      收藏:0      [点我收藏+]

标签:less嵌套

示例

#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)

<!DOCTYPE html>
<html>
<head>
	<meta charset="utf-8">
	<meta http-equiv="X-UA-Compatible" content="IE=edge">
	<title>less3</title>
	<link rel="stylesheet" href="example3.css">
	<style>
		#header{
			width: 500px;
			height: 400px;
			border: 1px solid #ccc;
		}
	</style>
</head>
<body>
	<div id="header">
		<h1>h1</h1>
		<div class="menu">
			<ul>
				<li>...</li>
			</ul>
		</div>
	</div>
</body>
</html>


本文出自 “素颜” 博客,请务必保留此出处http://suyanzhu.blog.51cto.com/8050189/1900684

less嵌套

标签:less嵌套

原文地址:http://suyanzhu.blog.51cto.com/8050189/1900684

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!