Can't the css selector be the name of the tag?

青灯夜游
Release: 2022-09-23 17:16:35
Original
2324 people have browsed it

can be; the element selector uses HTML tag names. In CSS, the element selector locates specific HTML elements through the element (tag) name of the HTML page. The syntax structure is "element name {attribute: attribute value;}"; if the element selector is used alone, it will locate the current HTML page. All elements with this element name in .

Can't the css selector be the name of the tag?

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

The css selector can be the name of the tag.In css, element selectors use HTML tag names.

css element selector

Element selector is also called type selector. It locates specific HTML elements through the element name of the HTML page. . If the type selector is used alone, it will locate all elements with this element name in the current HTML page.

The syntax structure is as follows:

元素名 { 属性:属性值; }
Copy after login

It is worth noting that the element name of the element selector is not case-sensitive.

The sample code is as follows:

      类型选择器  
  

一级标题

二级标题

sdfgs
123

123

456
456
Copy after login

Cant the css selector be the name of the tag?

Advantages of element selectors

  • The code becomes less. Instead of writing CSS code for each p tag, now you only need to write one line in the header.

  • Better maintained. In the past, if you wanted to modify the color, you needed to modify the code in the style of each p tag. Now you only need to modify the header.

  • The code is clearer. Previously, CSS and HTML codes were actually mixed together and difficult to distinguish. After using the selector, all CSS codes are concentrated in the header, which is obviously better differentiated and clearer.

Summary

The element selector can apply the style to a certain tag at one time, which is very good and powerful.

(Learning video sharing:web front-end)

The above is the detailed content of Can't the css selector be the name of the tag?. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
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
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!