Summary of Common Terms in CSS (Cascading Style Sheet)

Summary of Common Terms in CSS (Cascading Style Sheet)
If you use CSS don't forget to write DOCTYPE, document type definition.
Standard box model

1. Element classification <br />Block-level elements (block)
Div+css (DIV and CSS are both containers)
<p> is a paragraph tag, a block-level element.
Inline elements
Span does not respond to box model properties.
2. Standard flow <br />The arrangement of labels.
3. Box model <br />Put the element into the box with a margin of 4 (take the maximum value when two are together, do not add the sum)
Padding 4 content areas (width and height)
Border 4
Styles can be written together.
4. Float <br />Depart from the standard flow.
5. Positioning <br />Absolute: absolute deviates from the standard flow and is absolute to the box that contains the element.
Relative: relative to the original position but not out of the standard flow
6. Setting the hyperlink style
a:link is the initial state of the hyperlink
a:hover is the state of hovering when the mouse is placed on it
a:active is when the mouse is clicked
a: visited is the situation after visiting
7. CSS hack (For more information about CSS hack, please visit: http://baike.baidu.com/view/1119452.htm)
*margin-top:10px!important; /*Only IE678 recognizes this rule*/
_margin is only recognized by IE6.
Other core browsers can recognize!Important (increase priority)
Solve the IE gap problem: Margin-top: -2em Make the outer border two e units upward
8. These three attributes must be present when loading the cut image
background-image
background-position
background-repeat: /*no repeat*/
9. * Space represents the settings for all elements

<<:  Implementation of Element-ui Layout (Row and Col components)

>>:  Add ?v= version number after js or css to prevent browser caching

Recommend

SASS Style Programming Guide for CSS

As more and more developers use SASS, we need to ...

Solution to the failure of loading dynamic library when Linux program is running

Unable to load dynamic library under Linux When t...

Detailed configuration of mysql8.x docker remote access

Table of contents Environmental conditions Errors...

Tutorial on installing JDK Tomcat MySQL on Linux (remote access using Mac)

One environment Alibaba Cloud Server: CentOS 7.4 ...

JQuery implements hiding and displaying animation effects

This article shares the specific code of JQuery t...

Solution to MySql service disappearance for unknown reasons

Solution to MySql service disappearance for unkno...

How to set static IP in CentOS7 on VirtualBox6 and what to note

Install CentOS 7 after installing VirtualBox. I w...

HTML special character conversion table

character Decimal Character Number Entity Name --...

Steps to enable TLS in Docker for secure configuration

Preface I had previously enabled Docker's 237...

Research on the value of position attribute in CSS (summary)

The CSS position attribute specifies the element&...

How to quickly set the file path alias in react

React is a JavaScript library for building user i...

The use of setState in React and the use of synchronous and asynchronous

In react, if you modify the state directly using ...

Implementation of Nginx configuration of local image server

Table of contents 1. Introduction to Nginx 2. Ima...