Style sheet classification
1, inline type. Written in the body. Precise control and poor repeatability.
< Body > < style= "color: #90F"> better return results also </Div > </body>
2, embedded in the head is a double mark <style></style>
<!DOCTYPE HTML Public "-//W3C//DTD XHTML 1.0 transitional//en" "http://www.w3.org/TR/xhtml1/DTD/ Xhtml1-transitional.dtd "><HTMLxmlns= "http://www.w3.org/1999/xhtml"> <Head> <Metahttp-equiv= "Content-type"content= "text/html; charset=utf-8" /> <title>Untitled Document</title> <styletype= "Text/css">Div{Color:#00F} </style> </Head> <Body> <Div>The return result of better play also</Div> </Body></HTML>
3. External style
Create a new CSS file to place the style sheet. If you want to call a style sheet in an HTML file, right-click----CSS style in the HTML file----Attach the style sheet. General Link Links
<href= "untitled-2.css" rel= "stylesheet" type/>
<!DOCTYPE HTML Public "-//W3C//DTD XHTML 1.0 transitional//en" "http://www.w3.org/TR/xhtml1/DTD/ Xhtml1-transitional.dtd "><HTMLxmlns= "http://www.w3.org/1999/xhtml"> <Head> <Metahttp-equiv= "Content-type"content= "text/html; charset=utf-8" /> <title>Untitled Document</title> <styletype= "Text/css">Div{Color:#00F} </style> <Linkhref= "Untitled-2.css"rel= "stylesheet"type= "Text/css" /> </Head> <Body> <Div>The return result of better play also</Div> </Body></HTML>
CSS style sheets--style sheet classification