三,CSS选择器

作者: 好多可乐 | 来源:发表于2020-12-14 00:06 被阅读0次
    作用:

    选择(找到)需要添加样式的位置

    常用选择器:
    • 标签选择器
    • 类选择器
    具体使用:
    1. 定义类选择器:<p class="xxx">
    2. 引用类选择器:.xxx{}
    3. 引用标签选择器:p{}
    <!DOCTYPE html>
    <html>
    <head>
        <title></title>
        <style type="text/css">
       /**引用标签选择器*/
        p{
            background-color: red;
            font-size: 40;
        }
      /**引用类选择器*/
        .p1{
            font-family: 隶书;
        }
    </style>
    </head>
        <p>http://www.imooc.com</p>
        /**定义*/
        <p class="p1">慕课网</p>
    </body>
    </html>
    

    相关文章

      网友评论

        本文标题:三,CSS选择器

        本文链接:https://www.haomeiwen.com/subject/sdcpgktx.html