1.

What is the difference between Sass comments regular CSS?

Answer»

15. Explain @if DIRECTIVE?

@if directive <and its other companions LIKE @else if, @else allows the code to run only if the conditions are met

Example

@if <BOOLEAN expression&GT; {
      <statements>
}



Discussion

No Comment Found