LESS Multiple &
描述
通過使用&運算符,可以重復引用父選擇器,而不使用其名稱。在選擇器&中可以多次使用。
例子
下面的例子演示了在LESS文件中使用多個&:
<html> <head> <title>Parent Selector</title> <link rel="stylesheet" href="style.css" type="text/css" /> </head> <body> <h2>Welcome to W3Cschool</h2> <p class="select">It is possible to reference the parent selector by using &(ampersand) operator.</p> <p class="select_class1">It is possible to reference the parent selector by using &(ampersand) operator</p> </body> </html>
接下來,創建文件style.less
style.less
.select { & + & { color: #A9F5F2; } & & { color: #D0FA58; } && { color: #81BEF7; } &, &_class1 { color: #A4A4A4; } }
您可以使用以下命令將 style.less 文件編譯為 style.css :
lessc style.less style.css
接下來執行上面的命令,它將用下面的代碼自動創建 style.css 文件:
style.css
.select + .select { color: #A9F5F2; } .select .select { color: #D0FA58; } .select.select { color: #81BEF7; } .select, .select_class1 { color: #A4A4A4; }
輸出
讓我們執行以下步驟,看看上面的代碼如何工作:
將上述html代碼保存在parent_selector.htm文件中。
在瀏覽器中打開此HTML文件,將顯示如下輸出。