How to use div id and div class
This article mainly explains "how to use div id and div class". The content in the article is simple and clear, and it is easy to learn and understand. Please follow the editor's train of thought to study and learn how to use div id and div class.
Id and class are used in div, span, p tags, H2, h3, and other tags, and id and class are very commonly used in-tag attributes.
The above is common to see id and class in the div tag. "header" and "menu" are custom CSS names. (pay attention to CSS naming case, do not start with a number to name css)
I. explanation of the usage of id and class
1. Differences in use
Id is unique, and the same name can only be used once in a web page.
Classes named by class can be used countless times in a web page.
2. The difference in css
Id is a class that begins with the "#" pound sign in css code.
Class is used in css code as "." A class at the beginning of a lowercase period symbol.
What do you mean by id and class
Both id and class can be used within any tag in a web page. Generally, the more important parts and special boxes use id, while the small parts or small structures use class. Id calls the style selector named "#" pound sign in css, and class calls css with "." A style selector named by a period in lowercase.
Thank you for your reading, the above is the content of "how to use div id and div class". After the study of this article, I believe you have a deeper understanding of how to use div id and div class, and the specific use needs to be verified in practice. Here is, the editor will push for you more related knowledge points of the article, welcome to follow!