zoukankan      html  css  js  c++  java
  • font缩写的顺序

    一直记不住这个,今天写下来!

    font : font-style || font-variant || font-weight || font-size || line-height || font-family 

    可以按顺序设置如下属性:

    • font-style (使用斜体、倾斜或正常字体)
    • font-variant (设置小型大写字母的字体显示文本)
    • font-weight (设置文本的粗细)
    • font-size/line-height (设置字体的尺寸和行高)
    • font-family (规定元素的字体系列)

    可以不设置其中的某个值,比如 font:100% verdana; 也是允许的。未设置的属性会使用其默认值。

    如:

    body{ font: italic small-caps bold 14px/24px "microsoft yahei";}

    字体:斜体 小型大写字母 粗体 14号大小/24像素行高 微软雅黑

    可以不需要每个都写,但是顺序还是要的




  • 相关阅读:
    spring boot 配置时区差别
    概率期望
    Euler函数与Euler定理
    素数&筛法
    等差子序列
    8.19 T2
    8.19 T1
    量化交易
    挺进

  • 原文地址:https://www.cnblogs.com/chjb/p/4810206.html
Copyright © 2011-2022 走看看