Div 8.3.29 div format settings, 2018.3.29div format
<! DOCTYPE html>
<Html>
<Head>
<Meta charset = "UTF-8">
<Title> </title>
<Style type = "text/css">
/* Tag name search, with the same name and format */
Span {
Color: coral;
}
/* Id name search, which cannot be repeated */
# {
Width: 100px;
Height: 100px;
Background-color: #5F9EA0;
}
/* Class search. The names can be repeated and the format is the same */
. B {
Width: 100px;
Height: 100px;
Background-color: #8A2BE2;
Border: 1px solid green;
}
/* Use "," in the same format */
# C,. d {
Width: 100px;
Height: 100px;
Background-color: # FF0000;
Border: 1px solid green;
}
/* Parent level, child level with space */
# Fu # zi1, # zi2 {
Width: 100px;
Height: 100px;
Background-color: black;
Border: 1px solid green;
}
</Style>
</Head>
<Body>
<Span>
Tag Name Search
</Span>
<Div id = "a"> </div>
<Div class = "B"> </div>
<Div class = "B"> </div>
<Div id = "c"> </div>
<Div class = "d"> </div>
<Div id = "fu">
<Div id = "zi1"> </div>
<Div id = "zi2"> </div>
</Div>
</Body>
</Html>