扫码一下
查看教程更方便
我们可以以与嵌套选择器相同的方式嵌套媒体和关键帧等指令。 我们可以将指令放在顶部,并且其相关元素不会在其规则集中更改。 这被称为冒泡过程。
下面的例子演示了LESS文件中嵌套指令和冒泡的使用
nested_directives_bubbling.html
<html> <head> <title>迹忆客(jiyik.com) - 嵌套指令</title> <link rel = "stylesheet" type = "text/css" href = "style.css" /> </head> <body> <h1>Example using Nested Directives</h1> <p class = "myclass">LESS enables customizable, manageable and reusable style sheet for web site.</p> </body> </html>
接下来,创建文件 style.less。
style.less
.myclass { @media screen { color: blue; @media (min-width: 1024px) { color: green; } } @media mytext { color: black; } }
我们可以使用以下命令将 style.less 文件编译为 style.css
$ lessc style.less style.css
执行上述命令; 它将使用以下代码自动创建 style.css 文件
style.css
@media screen { .myclass { color: blue; } } @media screen and (min-width: 1024px) { .myclass { color: green; } } @media mytext { .myclass { color: black; } }
按照以下步骤查看上述代码的工作原理