search
HomeWeb Front-endCSS TutorialWhat is the @extend directive in SASS?

SASS 中的 @extend 指令是什么?

SASS allows developers to write more readable code and manipulate it in better ways. It contains multiple directives such as @media, @content, @include, @mixin, @extend, etc. that provide features so that developers can write better code than normal CSS.

In this tutorial, we will learn about @directives in SASS. The @extend directive allows developers to extend CSS code. However, mixins also extend CSS code and avoid duplication. The @extend directive also allows us to avoid code duplication.

For example, if your application's fonts have a common CSS and a different font size is required everywhere, you can extend the font style and add a custom font size. This eliminates the need to write duplicate code.

Additionally, developers can implement inheritance in CSS using the @extend directive, which we will learn through examples.

grammar

Users can use the @extend directive in SASS according to the following syntax.

selector {
   /* CSS code */
}
Another_CSS_selector {
   @extend selector;
   /* CSS code */
}

In the above syntax, we can write common CSS in the declaration block of the "selector". After that we can extend the selector inside "Another_CSS_Selector" and add our own code.

Example 1 (Basic use of @extend directive)

In the example below, we define some styles for an HTML element with the "card" class name. After that, we define CSS for the "small_card" and "large_Card" elements. We used the @extend directive in both selectors to extend the CSS of the "card" selector. Additionally, we've included some additional CSS like width, height, etc. in the "small_card" and "large_card" selectors.

.card {
   background-color: aliceblue;
   color: green;
   border: 2px solid pink;
   border-radius: 1.4rem;
}
.small_card {
   @extend .card;
   width: 100px;
   height: 100px;
   margin: 5px;
   padding: 5px;
}
.large_card {
   @extend .card;
   width: 500px;
   height: 500px;
   margin: 10px;
   padding: 10px;
}

Output

In the output below, we can observe that the style of the "card" selector is applied to the "small_card" and "large_card" selectors. Additional CSS is also applied to both selectors separately.

.card,
.small_card,
.large_card {
   background-color: aliceblue;
   color: green;
   border: 2px solid pink;
   border-radius: 1.4rem;
}
.small_card {
   width: 100px;
   height: 100px;
   margin: 5px;
   padding: 5px;
}
.large_card {
   width: 500px;
   height: 500px;
   margin: 10px;
   padding: 10px;
}

Example 2 (inheritance chain using @extend directive)

In the following example, we demonstrate how to use the @extend directive to create an inheritance chain. Here we’ve added some CSS inside the “.first” selector. After that, we extended the ".first" selector inside the ".second" selector and added some extra CSS.

Next, we expand the ".second" selector inside the ".third" selector and the ".third" selector inside the ".fourth" selector. So here we have created an inheritance chain using different CSS selectors.

.first {
   width: 100px;
   height: auto;
}
.second {
   @extend .first;
   color: blue;
}
.third {
   @extend .second;
   background-color: pink;
   border: 2px dotted red;
}
.fourth {
   @extend .third;
   margin: 10px;
   padding: 1rem;
}

Output

The output below shows how the CSS code is applied to different CSS selectors when we use the @extend directive to create an inheritance chain.

.first,
.second,
.third,
.fourth {
   width: 100px;
   height: auto;
}
.second,
.third,
.fourth {
   color: blue;
}
.third,
.fourth {
   background-color: pink;
   border: 2px dotted red;
}
.fourth {
   margin: 10px;
   padding: 1rem;
}

Example 3 (Multiple inheritance using @extend directive)

In this example, we demonstrate how to use multiple inheritance using the @extend directive. Multiple inheritance means that a single selector extends multiple selectors.

Here, we defined the ".container" and ".main" CSS selectors and added some CSS. After that, inside the ".element" CSS selector, we extend the ".container" and ".main" selectors.

.container {
   width: 500px;
   height: 500px;
   background-color: beige;
}
.main{
   color: pink;
   float: left;
   max-width: 600px;
   max-height: 700px;
   overflow: auto;
}
.element {
   @extend .main;
   @extend .container;
   padding: 2%;
}

Output

.container,
.element {
   width: 500px;
   height: 500px;
   background-color: beige;
}
.main,
.element {
   color: pink;
   float: left;
   max-width: 600px;
   max-height: 700px;
   overflow: auto;
}
.element {
   padding: 2%;
}

Example 4 (using @extend directive within @media directive)

In the example below, we use the @extend directive inside the @media directive. However, the SASS compiler throws an error whenever we extend a CSS selector that is defined outside of the @media directive within the @media directive's selector.

Here, we extend the ".small_button" CSS selector with the ".button" CSS selector in the @media directive. Users can observe that both selectors here are located within the @media directive.

@media small_screen {
   .button {
      width: 50%;
      clear: both;
      font-size: 1.3rem;
   }
   .small_button {
      @extend .button;
      @extend .main;
      height: 25%;
   }
}

Output

@media small_screen {
   .button,
   .small_button {
      width: 50%;
      clear: both;
      font-size: 1.3rem;
   }
   .small_button {
      height: 25%;
   }
}

Example 5 (Placeholder Selector)

As the name suggests, we can create a placeholder selector by adding the (%) symbol before the selector name. When we compile SASS code, the placeholder selector will not appear in the output code, but its style will be added in place of expansion.

For example, we define the "%container" placeholder selector here. After that, we extended the container selectors inside "small_container" and "medium_container".

In the output, we can observe that it does not contain the "container" selector, but "small_container" and "large_container" contain the "container" placeholder code.

%container {
   color: red;
   background-color: green;
   padding: 3%;
   margin: 0 auto;
}
.small_container {
   @extend %container;
   width: 100px;
   height: 100px;
}
.medium_container {
   @extend %container;
   width: 300px;
   height: 300px;
}

Output

.small_container,
.medium_container {
   color: red;
   background-color: green;
   padding: 3%;
   margin: 0 auto;
}
.small_container {
   width: 100px;
   height: 100px;
}
.medium_container {
   width: 300px;
   height: 300px;
}

Users learned how to use the @extend directive in this tutorial. Basically, we can use it to extend stylesheets and avoid duplication of code. Additionally, we can create inheritance chains in CSS using the @extend directive.

The above is the detailed content of What is the @extend directive in SASS?. For more information, please follow other related articles on the PHP Chinese website!

Statement
This article is reproduced at:tutorialspoint. If there is any infringement, please contact admin@php.cn delete
Demystifying Screen Readers: Accessible Forms & Best PracticesDemystifying Screen Readers: Accessible Forms & Best PracticesMar 08, 2025 am 09:45 AM

This is the 3rd post in a small series we did on form accessibility. If you missed the second post, check out "Managing User Focus with :focus-visible". In

Create a JavaScript Contact Form With the Smart Forms FrameworkCreate a JavaScript Contact Form With the Smart Forms FrameworkMar 07, 2025 am 11:33 AM

This tutorial demonstrates creating professional-looking JavaScript forms using the Smart Forms framework (note: no longer available). While the framework itself is unavailable, the principles and techniques remain relevant for other form builders.

Adding Box Shadows to WordPress Blocks and ElementsAdding Box Shadows to WordPress Blocks and ElementsMar 09, 2025 pm 12:53 PM

The CSS box-shadow and outline properties gained theme.json support in WordPress 6.1. Let's look at a few examples of how it works in real themes, and what options we have to apply these styles to WordPress blocks and elements.

Working With GraphQL CachingWorking With GraphQL CachingMar 19, 2025 am 09:36 AM

If you’ve recently started working with GraphQL, or reviewed its pros and cons, you’ve no doubt heard things like “GraphQL doesn’t support caching” or

Making Your First Custom Svelte TransitionMaking Your First Custom Svelte TransitionMar 15, 2025 am 11:08 AM

The Svelte transition API provides a way to animate components when they enter or leave the document, including custom Svelte transitions.

Comparing the 5 Best PHP Form Builders (And 3 Free Scripts)Comparing the 5 Best PHP Form Builders (And 3 Free Scripts)Mar 04, 2025 am 10:22 AM

This article explores the top PHP form builder scripts available on Envato Market, comparing their features, flexibility, and design. Before diving into specific options, let's understand what a PHP form builder is and why you'd use one. A PHP form

Show, Don't TellShow, Don't TellMar 16, 2025 am 11:49 AM

How much time do you spend designing the content presentation for your websites? When you write a new blog post or create a new page, are you thinking about

What the Heck Are npm Commands?What the Heck Are npm Commands?Mar 15, 2025 am 11:36 AM

npm commands run various tasks for you, either as a one-off or a continuously running process for things like starting a server or compiling code.

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks agoBy尊渡假赌尊渡假赌尊渡假赌
Repo: How To Revive Teammates
1 months agoBy尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
4 weeks agoBy尊渡假赌尊渡假赌尊渡假赌

Hot Tools

PhpStorm Mac version

PhpStorm Mac version

The latest (2018.2.1) professional PHP integrated development tool

Safe Exam Browser

Safe Exam Browser

Safe Exam Browser is a secure browser environment for taking online exams securely. This software turns any computer into a secure workstation. It controls access to any utility and prevents students from using unauthorized resources.

SublimeText3 English version

SublimeText3 English version

Recommended: Win version, supports code prompts!

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)