LESS - Changing Selector Order



Description

Prepending a selector to the inherited (parent) selectors is useful when selector ordering is changed. This is achieved by placing & after the selector. For instance, when you use Modernizer, you may wish to specify different rules depending on supported features.

Example

The following example demonstrates the use of changing selector order in the LESS file −

<html>
   <head>
      <link rel = "stylesheet" href = "changing_selector_order.css" type = "text/css" />
      <title>Parent Selector</title>
   </head>

   <body>
      <div class = "header">
         <div class = "menu">
            <h2>Welcome to TutorialsPoint</h2>
            <p>It is possible to reference the parent selector by using &(ampersand) operator.</p>
         </div>
      </div>
   </body>
</html>

Now, create the style.less file.

style.less

.header {
   .menu {
      border-radius: 5px;
      border: 1px solid red;
      & {
         padding-left: 200px;
      }
   }
}

You can compile the style.less file to style.css by using the following command −

lessc style.less style.css

Execute the above command; it will create the style.css file automatically with the following code −

style.css

.header .menu {
   border-radius: 5px;
   border: 1px solid red;
   padding-left: 200px;
}

The .no-borderradius & selector will prepend .no-borderradius to its parent selector .header .menu

Output

Follow these steps to see how the above code works −

  • Save the above html code in the changing_selector_order.htm file.

  • Open this HTML file in a browser, the following output will get displayed.

Less Parent Selector
less_parent_selectors.htm
Advertisements