2016 - 1 - 24 CSS初步

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了2016 - 1 - 24 CSS初步相关的知识,希望对你有一定的参考价值。

1.The difference between CSS and html

    HTML document is that it specities the content of the page. And the CSS document aims to specity the  way the content is displayed.

 

2.Many HTML pages one CSS styleshreet

   So we can make the code  in every html document‘s head like that :

    <head>
        <title>This is my first page !</title>
        <link rel = "stylesheet"
              type = "text/css"
              href = "styles.css"
        />
    </head>

 

3.How to use the css document

body{
    background : green;
    color: white;
}
a{
    color: yellow;
}

 the body means all page‘s body style, and the ‘a‘ means a tag get yellow color !

 

4.How to use css control the fonts 

 1. The threen groups :

   1.1 Sans-serif:   sans meands out !

:技术分享

 

   1.2 Serif

 技术分享

   

   1.3 Monos paced: Always use when u want show some code examples

技术分享  

 

以上是关于2016 - 1 - 24 CSS初步的主要内容,如果未能解决你的问题,请参考以下文章

为啥这个 CSS 片段可以画一个三角形? [复制]

超级有用的9个PHP代码片段

CSS代码片段

CSS代码片段

VSCode自定义代码片段——CSS选择器

VSCode自定义代码片段——CSS动画