zoukankan      html  css  js  c++  java
  • CSS文本元素

    一、属性

    • font-size:16px;  文字大小
    • Font-weight: 700 ;   值从100-900,文字粗细,不推荐使用font-weight:bold;
    • Font-family:微软雅黑;  文本的字体
    • Font-style: normal | italic;      normal 默认值  italic  斜体
    • line-height: 行高

    二、文本属性连写

    font: font-style font-weight  font-size/line-height  font-family;
    • 注意:font:后边写属性的值。一定按照书写顺序。 文本属性连写文字大小和字体为必写项。
    Font:italic 700 16px/40px  微软雅黑;
    <style type="text/css">
            .div1{
                font-size: 14px;
                font-weight: 700;
                font-family: cursive;
                font-style: oblique;
               line-height: 20px;
                 
            }
            .div2{
                font: italic 700 16px/40px 微软雅黑;
            }
        </style>
    </head>
    <body>
        <div class="div1">文字大小</div>
        <div class="div2"> 文本属性连写文字大小和字体为必写项。</div>
    </body>

    三、文字的表达方式

    • 直接写中文名称。
    .div1{
                font-family: 微软雅黑;
                font-size: 60px;
            }
    • 写字体的英文名称。
     .div2{
                font-family: microsoft yahei;
                font-size: 60px;
            }
    • unicode 编码
    .div3{
                font-family: /u5FAE/u8F6F/u96C5/u9ED1;
                font-size: 60px;
            }

    • 小技巧:console输入escape(“宋体”)  注意英文的括号和双引号,可以输出unicode编码

  • 相关阅读:
    BZOJ3439: Kpm的MC密码
    BZOJ2819: Nim
    BZOJ1901: Zju2112 Dynamic Rankings
    Bzoj3230: 相似子串
    Bzoj4504: K个串
    CF609E. Minimum spanning tree for each edge
    bzoj1832: [AHOI2008]聚会
    css 笔记1
    namespace 相关
    cmd 命令
  • 原文地址:https://www.cnblogs.com/EricZLin/p/8606126.html
Copyright © 2011-2022 走看看