What does css class mean?

藏色散人
Release: 2022-12-30 11:11:24
Original
6379 people have browsed it

css class means class selector, which is used to select elements with specified classes; the class selector is displayed with a dot, and its usage syntax is such as ".center {text-align: center}", This statement means that all HTML elements with the center class are centered.

What does css class mean?

The operating environment of this tutorial: windows7 system, HTML5&&CSS3 version, Dell G3 computer.

Recommended: css video tutorial

In css, class refers to the class (class) selector, which is used to select elements with a specified class (class) ;The class selector is displayed with a period, such as ".center".

.center {text-align: center}
Copy after login

In the above example, all HTML elements with the center class are centered.

In the HTML code below, both h1 and p elements have the center class. This means that both will obey the rules in the ".center" selector.

<h1 class="center">
This heading will be center-aligned
</h1>
<p class="center">
This paragraph will also be center-aligned.
</p>
Copy after login

Note: Numbers cannot be used as the first character of the class name! It won't work in Mozilla or Firefox.

Like id, class can also be used as a derived selector:

.fancy td {
color: #f60;
background: #666;
}
Copy after login

In the above example, the table cells inside the larger element with the class name fancy will have a gray background Orange text is displayed. (A larger element named fancy might be a table or a div)

Elements can also be selected based on their class:

td.fancy {
color: #f60;
background: #666;
}
<td class="fancy">
Copy after login

In the above example, the class name fancy table cells will be orange with a gray background.

The above is the detailed content of What does css class mean?. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
css
source:php.cn
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
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!