美文网首页
CSS表样式表分类

CSS表样式表分类

作者: 潇洒的小老虎 | 来源:发表于2018-05-02 19:12 被阅读0次

    行内样式表

    在标签里添加style属性

    <h4 style="color: pink;font-size: 25px">青春不常在,抓紧谈恋爱</h4>
    

    内部样式表

    在head标签中写内部样式表
    基本语法格式格式:选择器 {属性:值;}
    选择器是选择标签的

    <head>
        <meta charset="UTF-8">
        <title>标题</title>
        <style>
            th{
                color: skyblue;
            }
        </style>
    </head>
    

    外部样式表

    先导入外部样式表
    <link href="lianxi.css" rel="stylesheet">

    相关文章

      网友评论

          本文标题:CSS表样式表分类

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