
Good content takes time and effort to come up with.
Please consider supporting us by just disabling your AD BLOCKER and reloading this page again.
In the previous article we got to know in depth understanding of Sass/SCSS and how to use it.
If you are still new to Sass/SCSS then I recommend to check out my in depth article Sass or SCSS In-Depth Tutorial
In this article, I will be covering the difference between @mixin, @extends, and Placeholder.
When you use the @mixin in the code it will replicate the code in all the using blocks
Example -
@mixin wrapper{
margin:0px auto;
padding: 0px;
}
.w1{
@include wrapper;
}
.w2{
@include wrapper;
}
will be compiled to the following
.w1 {
margin: 0px auto;
padding: 0px;
}
.w2 {
margin: 0px auto;
padding: 0px;
}
The styles in the .w1 and .w2 styles is redundant
wrapper{
margin:0px auto;
padding: 0px;
}
.w1{
@extend wrapper;
}
.w2{
@extend wrapper;
}
will be compiled to the following
wrapper, .w1, .w2 {
margin: 0px auto;
padding: 0px;
}
Here the styles are not redundant, @extend is intelligent enough and adds wrapper,.w1,.w2
But there is one problem with this, if I don't use wrapper in my project then we are simply adding the redundant code in our style.
Example -
%wrapper{
margin:0px auto;
padding: 0px;
}
.w1{
@extend %wrapper;
}
.w2{
@extend %wrapper;
}
will be compiled to the following
.w1, .w2 {
margin: 0px auto;
padding: 0px;
}
Laravel Last Executed Query In Plain SQL Statement For Debugging
Send SMS With Amazon SNS (Simple Notification Service) Using PHP
Manipulate HTML Using DOMDocument In PHP
Ensure text remains visible during Webfont load
Install Linux, Apache, MYSQL, PHP (LAMP Stack) on Ubuntu
Composer Install v/s Composer Update
Create Custom 404 Page In Laravel
Generate Fake Data In PHP With Faker
Custom Validation Rules In PHP Laravel (Using Artisan Command)
Client-Side Form Validation With Javascript
What Is Method Chaining In PHP?
Install Apache Web Server On Ubuntu 20.04 / Linux & Manage It