更改选择器顺序时, 将选择器置于继承的(父)选择器之前很有用。 &运算符放置在选择器后面以实现此目的。
例如:当你使用Modernizer时, 你可能希望根据支持的功能指定不同的规则。
更改选择器订单示例
让我们以一个示例来演示更改选择器顺序父选择器的用法。
创建一个名为”
simple.html”
的HTML文件, 其中包含以下数据。
HTML档案:simple.html
<
!DOCTYPE html>
<
html>
<
head>
<
link rel="stylesheet" href=" C:\ \simple.css" type="text/css" />
<
title>
Changing Selector Order Example<
/title>
<
/head>
<
body>
<
div class="header">
<
div class="menu">
<
h2>
srcmini: A solution of all technology.<
/h2>
<
p>
It is possible to reference the parent selector by using &
(ampersand) operator.<
/p>
<
/div>
<
/div>
<
/body>
<
/html>
现在创建一个名为” simple.less” 的文件。它类似于CSS文件。唯一的区别是它以” .less” 扩展名保存。
Less文件:simple.less
.header {.menu {border-radius: 5px;
border: 1px solid red;
&
{padding-left: 200px;
}}}
将文件” simple.html” 和” simple.less” 都放在Node.js的根文件夹中
现在, 执行以下代码:lessc simple.less simple.css
文章图片
这将编译” simple.less” 文件。将生成一个名为” simple.css” 的CSS文件。
例如:
文章图片
生成的CSS” simple.css” 具有以下代码:
.header .menu {border-radius: 5px;
border: 1px solid red;
padding-left: 200px;
}
【Less更改选择器顺序的父选择器】输出
文章图片