less嵌套

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了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中的嵌套

less杂记

嵌套调用less函数时参数值的变化及提取部分-遁地龙卷风

嵌套选择器性能影响和 LESS

leetcode_1292. Maximum Side Length of a Square with Sum Less than or Equal to Threshold_[二维前缀和](代码片段

使用嵌套片段和动画对象