How to select all child elements and add styles to them in CSS

How to select all child elements and add styles to them in CSS

method:

Take less in the actual project as an example:

.lk-toolbar {
    .el-input {
        width: 169px;
        margin-right: 10px;
    }
    > * {
        margin-bottom: 20px;
    }
}

The above code successfully implements the margin-bottom: 20px of all sub-elements under .lk-toolbar

This avoids the idiotic task of listing all possible sub-element types:

.lk-toolbar {
    .el-input {
        width: 169px;
        margin-right: 10px;
        margin-bottom: 20px;
    }
    .el-button, .el-date-editor {
        margin-bottom: 20px;
    }
}

Application scenarios (effects):

Insights (nonsense):

At first I wondered if there was such a selector in CSS to select all child elements. Later I looked at the documentation and found that although there was no such selector, the most basic method has been told to you, and the rest depends on your own luck (see if you can use it flexibly!)

Tutorial OS: "The methods are all here. It's up to you whether you can use them or not."

This concludes this article on how to select all child elements and add styles with CSS. For more information on adding styles to child elements with CSS, please search previous articles on 123WORDPRESS.COM or continue browsing the related articles below. We hope that everyone will support 123WORDPRESS.COM in the future!

<<:  Some common properties of CSS

>>:  Implementation code for adding links to FLASH through HTML (div layer)

Recommend

vue+el-upload realizes dynamic upload of multiple files

vue+el-upload multiple files dynamic upload, for ...

JavaScript to achieve accordion effect

This article shares the specific code for JavaScr...

js regular expression lookahead and lookbehind and non-capturing grouping

Table of contents Combining lookahead and lookbeh...

Vue network request scheme native network request and js network request library

1. Native network request 1. XMLHttpRequest (w3c ...

Detailed example of MySQL data storage process parameters

There are three types of MySQL stored procedure p...

MySQL 8.0.20 Installation Tutorial with Pictures and Text (Windows 64-bit)

1: Download from mysql official website https://d...

The whole process of configuring hive metadata to MySQL

In the hive installation directory, enter the con...

Linux system (Centos6.5 and above) installation jdk tutorial analysis

Article Structure 1. Preparation 2. Install Java ...

Basic steps to use Mysql SSH tunnel connection

Preface For security reasons, the root user of My...

Introduction to Semantic HTML Tags

In the past few years, DIV+CSS was very popular in...

How to modify the root password of mysql under Linux

Preface The service has been deployed on MySQL fo...

Native js to achieve accordion effect

In actual web page development, accordions also a...

Use of Linux telnet command

1. Introduction The telnet command is used to log...

Learn about TypeScript data types in one article

Table of contents Basic Types any type Arrays Tup...