#web-development
Read more stories on Hashnode
Articles with this tag
@mixin allows you to create reusable CSS code and the @include acts as a receiver, like it receives the value of @mixin. ยท @mixin flex_property($var1) { ...
//html /* <div> hello <p> this is <span> css nesting</span> </p> </div> */ // scss nesting div{ color: red; p{ color:...
// creating scss variables $text-color: rgb(223, 0, 0); $bg-color: silver; $hover-text-color: rgb(255, 255, 255); .container{ background-color:...
SCSS is a CSS pre-processor. We should use SCSS to reduce the repetition of CSS. All Concepts - a. variable b. nesting c. import d. mixin e....