VOOZH about

URL: https://www.geeksforgeeks.org/angular-js/how-to-select-only-direct-children-from-element-with-sass/

⇱ How to select only direct children from element with Sass? - GeeksforGeeks


  • Courses
  • Tutorials
  • Interview Prep

How to select only direct children from element with Sass?

Last Updated : 2 Nov, 2020

Introduction:
Sass is a scripting language that is compiled into Cascading style sheets (CSS). It is a kind of preprocessor language. It was initially designed by Hampton Catlin and then it was developed by Natalie Weizenbaum. After its initial versions, Weizenbaum and Chris Eppstein have continued to extend SASS with SassScript. It supports four data types and they are Numbers, Strings, Colors, and booleans. Nesting also works in this language. Approach regarding the question:

  • First defined the content in a .html file.
  • In the HTML file in your content make sure that you are placing child tags or having child tags inside a parent tag.
  • Once you are done with the HTML tag then use " & " and " > " in the SCSS file to style the direct children.

Implementation By code:

app.component.html:

app.component.scss:

app.module.ts:

Output:

👁 Image

If you clearly observe the above screenshot as the background color is applied only to the direct children.

Comment
Article Tags:

Explore