美文网首页
style常用样式

style常用样式

作者: Gorden_x | 来源:发表于2017-08-16 15:19 被阅读0次

    1.颜色:color
    <style>
    h2 {
    color:red;
    }
    </style>

    或:
    <style>
    .red-text {
    color: red;
    }
    </style>
    <h1 class="red-text">文本</h1>

    2.字号:font-size
    <style>
    h1 {
    font-size: 30px;
    }
    </style>

    3.字体:font-family
    <style>
    h2 {
    font-family: Sans-serif;
    }
    </style>

    4.link标签来引入谷歌Lobster字体。
    <link href="https://fonts.gdgdocs.org/css?family=Lobster" rel="stylesheet" type="text/css">
    link标签解析:http://www.w3school.com.cn/tags/tag_link.asp

    5.当某种字体不可用时,你可以让浏览器自动降级到另一种字体。
    p {
    font-family: Helvetica, Sans-Serif;
    }
    当 Helvetica不可用时,会降级使用Sans-Serif

    一般浏览器都支持:Monospace、Serif和Sans-Serif字体.

    相关文章

      网友评论

          本文标题:style常用样式

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