LESS父選擇器
描述
如果您需要以除默認值之外的其他方式組合嵌套規則的選擇器,則 Parent選擇器運算符有許多用途。另一個典型的使用&是重復生成類名。
例子
下面的例子演示了在LESS文件中重復生成類名:
<html> <head> <link rel="stylesheet" href="style.css" type="text/css" /> <title>Parent Selector</title> </head> <body> <h2>Welcome to W3Cschool</h2> <p class="select-first">It is possible to reference the parent selector by using &(ampersand) operator.</p> <p class="select-second">It is possible to reference the parent selector by using &(ampersand) operator</p> <p class="select-third">It is possible to reference the parent selector by using &(ampersand) operator.</p> </body> </html>
接下來,創建文件style.less
風格
.select { &-first { background-color: #58D3F7; } &-second { background-color: #F5F6CE; } &-third { background-color: #F5A9E1; } }
您可以使用以下命令將style.less文件編譯為style.css:
lessc style.less style.css
接下來執行上面的命令,它將用下面的代碼自動創建style.css文件:
style.css
.select-first { background-color: #58D3F7; } .select-second { background-color: #F5F6CE; } .select-third { background-color: #F5A9E1; }
輸出
讓我們執行以下步驟,看看上面的代碼如何工作:
將上述html代碼保存在parent_selector22.htm文件中。
在瀏覽器中打開此HTML文件,將顯示如下輸出。