Table of Contents
grammar
Example 1 (Basic class inheritance)
Output
Example 2 (Inheriting multiple classes)
Example 3 (nested inheritance)
Home Web Front-end CSS Tutorial Inherit a class into another file in Sass

Inherit a class into another file in Sass

Sep 15, 2023 pm 02:17 PM

将类继承到 Sass 中的另一个文件

SASS is a preprocessor built on top of CSS to better manipulate CSS code. It contains multiple directives and rules that make writing CSS code easy. It also contains some very useful features such as inheritance, if/else statements, functions, etc.

In SASS, we can import one file into another and use the contents of one file in another. It also allows us to create inheritance between multiple classes. We can inherit one class to another class using @extend directive. By using inheritance in CSS, we can improve the reusability of our code.

In this tutorial, we will learn how to inherit a class from another file in SASS.

grammar

Users can inherit a class into another file in SASS according to the following syntax.

@import "filename";

.element {
   @extend .classname;
   // other css
}
Copy after login

We used the @import rule in the above syntax to import files. After that, we extend the "element" class with the "classname" class using the @extend directive.

Example 1 (Basic class inheritance)

In the following example, we demonstrate basic class inheritance. Here, in the card.scss file, we have added a 'card' class with some CSS properties. We can say that it contains all the basic CSS properties and values ​​we need to create cards.

In the style.scss file, we use the @import directive to import the card.scss file. After that, we styled the 'card-div' and 'card-container' classes. At the same time, we used the @extend rule to inherit the 'card-div' and 'card-container' classes into the 'card' class.

In the output, we can observe the results of the inherited class. Additionally, users can observe code reusability in the example below.

File name - card.scss

.card {
   background-color: aliceblue;
   border: 1px solid #ccc;
   border-radius: 5px;
   padding: 10px;
   margin: 10px;
   box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}
Copy after login

File name – style.scss

@import "card";

.card-container {
   @extend .card;
   width: 300px;
   height: 300px;
}
.card-div {
   @extend .card;
   width: 200px;
   height: 200px;
}
Copy after login

Output

.card,
.card-container,
.card-div {
   background-color: aliceblue;
   border: 1px solid #ccc;
   border-radius: 5px;
   padding: 10px;
   margin: 10px;
   box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

.card-container {
   width: 300px;
   height: 300px;
}

.card-div {
   width: 200px;
   height: 200px;
}
Copy after login

Example 2 (Inheriting multiple classes)

In the following example, we demonstrate inheritance of multiple classes. We added different classes containing CSS properties in the “specs.scss” file. In the style.scss file, we imported the "specs.scss" file. Additionally, we extended all 3 classes of the "specs.scss" file into "div" classes using the @extend directive. So, we inherited multiple classes into one class from another file.

File name - specs.scss

.margin {
   margin-top: 10px;
   margin-left: 10px;
}
.padding {
   padding-top: 10px;
   padding-left: 10px;
}
.size {
   font-size: 20px;
}
Copy after login

File name – style.scss

@import "specs";

.div {
   @extend .margin;
   @extend .padding;
   @extend .size;
   width: 300px;
   height: 300px;
   border: 2px dotted blue;
   border-radius: 12px;
}
Copy after login

Output

.margin,
.div {
   margin-top: 10px;
   margin-left: 10px;
}
.padding,
.div {
   padding-top: 10px;
   padding-left: 10px;
}
.size,
.div {
   font-size: 20px;
}
.div {
   width: 300px;
   height: 300px;
   border: 2px dotted blue;
   border-radius: 12px;
}
Copy after login

Example 3 (nested inheritance)

In the following example, we demonstrate nested inheritance. In the form.scss file, we created two different classes and added CSS properties.

In the style.scss file, we inherited the 'form-group' class through the 'form-field' class and added the 'form-input' class. The 'input-field' class inherits the 'form-input' class. So, we used nested inherited classes.

File name - form.scss

// form.scss
.form-field {
   margin-bottom: 20px;
}
input-field {
   border: 1px solid #cccccc;
   padding: 5px;
}
Copy after login

File name – style.scss

@import 'fonts';

.form-group {
   @extend .form-field;

   .form-input {
      @extend .input-field;
   }
}
Copy after login

Output

.form-field,
.form-group {
   margin-bottom: 20px;
}
.input-field,
.form-group .form-input {
   border: 1px solid #cccccc;
   padding: 5px;
}
Copy after login

Users learned to inherit classes from one file to another in SASS. Users need to import the file containing the class and use the @extend directive class name to inherit from one class to another.

The above is the detailed content of Inherit a class into another file 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

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.

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

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

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