目录

点击这里

描述 (Description)

&不仅代表最近的选择器,还代表所有父选择器。

例子 (Example)

以下示例演示了如何使用&表示LESS文件中的所有父选择器 -

parent_selector.htm

<html>
   <head>
      <link rel = "stylesheet" href = "multiple1.css" type = "text/css" />
   </head>
   <body>
      <div class = "grand_parent">
         <h3>Welcome to IoWiki</h3>
         <p class = "parent"> It is possible to reference the 
         parent selector by using &(ampersand) operator.</p>
         <p class = "parent_class">It is possible to reference the 
         parent selector by using &(ampersand) operator.</p>
      </div>
   </body>
</html>

接下来,创建style.less文件。

style.less

.grand_parent {
   .parent {
      & > & {
         color: #A9F5F2;
      }
      & & {
         color: #D0FA58;
      }
      && {
         color: #81BEF7;
      }
      &, &_class {
         color: #A4A4A4;
      }
   }
}

您可以使用以下命令将style.less文件编译为style.css -

lessc style.less style.css

执行上面的命令; 它将使用以下代码自动创建style.css文件 -

style.css

.grand_parent .parent > .grand_parent .parent {
   color: #A9F5F2;
}
.grand_parent .parent .grand_parent .parent {
   color: #D0FA58;
}
.grand_parent .parent.grand_parent .parent {
   color: #81BEF7;
}
.grand_parent .parent,
.grand_parent .parent_class {
   color: #A4A4A4;
}

输出 (Output)

请按照以下步骤查看上述代码的工作原理 -

  • 将上述html代码保存在parent_selector.htm文件中。

  • 在浏览器中打开此HTML文件,将显示以下输出。

较少的父选择器
↑回到顶部↑
WIKI教程 @2018