美文网首页
样式——修改文字的大小,颜色之类的

样式——修改文字的大小,颜色之类的

作者: gogoforit | 来源:发表于2017-02-04 21:49 被阅读0次

    1)外部样式表插入:即通过一个外部的css文件,来对样式进行修改

    <link rel = "stylesheet" type = "text/css" href = "mystyle.css">
    

    2)内部样式表

    <style type = "text/css" >
    body {background-color : 颜色代码}
    p{color : 颜色代码}
    </style>
    

    3)内联样式表

    <p style = "color = red" >我的文字</p>
    

    相关文章

      网友评论

          本文标题:样式——修改文字的大小,颜色之类的

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