Table of Contents
grammar
Example 1 (Basic use of @extend directive)
Output
Example 2 (inheritance chain using @extend directive)
Example 3 (Multiple inheritance using @extend directive)
Example 4 (using @extend directive within @media directive)
Example 5 (Placeholder Selector)
Home Web Front-end CSS Tutorial What is the @extend directive in SASS?

What is the @extend directive in SASS?

Aug 27, 2023 pm 01:17 PM

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 */
}
Copy after login

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;
}
Copy after login

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;
}
Copy after login

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;
}
Copy after login

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;
}
Copy after login

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%;
}
Copy after login

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%;
}
Copy after login

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%;
   }
}
Copy after login

Output

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

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;
}
Copy after login

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;
}
Copy after login

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 of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn

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 ago By 尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
1 months ago By 尊渡假赌尊渡假赌尊渡假赌
Two Point Museum: All Exhibits And Where To Find Them
1 months ago By 尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

Demystifying Screen Readers: Accessible Forms & Best Practices Demystifying Screen Readers: Accessible Forms & Best Practices Mar 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 Framework Create a JavaScript Contact Form With the Smart Forms Framework Mar 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 Elements Adding Box Shadows to WordPress Blocks and Elements Mar 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 Caching Working With GraphQL Caching Mar 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 Transition Making Your First Custom Svelte Transition Mar 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.

Show, Don't Tell Show, Don't Tell Mar 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

Classy and Cool Custom CSS Scrollbars: A Showcase Classy and Cool Custom CSS Scrollbars: A Showcase Mar 10, 2025 am 11:37 AM

In this article we will be diving into the world of scrollbars. I know, it doesn’t sound too glamorous, but trust me, a well-designed page goes hand-in-hand

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