zoukankan      html  css  js  c++  java
  • [HeadFirst-HTMLCSS学习笔记][第八章扩大你的词汇量]

    字体

    • font-family,可指定多个候选

      body{
          font-family:Verdana,Geneva,Arial,sans-serif;
      }
      
    • font-size 字体大小

      body{
          font-family: sans-serif;
          font-size: 14px;
      }
      h1{
          font-size: 150%;
      }
      h2{
          font-size: 1.2em;
      }
      p{
          font-size: 100%;
      }
      

      关键词

      • xx-small
      • x-small
      • small
      • medium
      • large
      • x-large
      • xx-large

      秘诀:设置body为medium或者small(正文大小),其余按比例

    • color 文本颜色

      body{
          color:silver;
      }
      还能
      body{
          color:rgb(80%,40%,0%);
      
      }
      还能
      body{
          color:rgb(204,102,0);
      }
      或者16进制
      
    • font-weight 字体粗细

      body{
          font-weight:bold;
      }
      

      关键词

      • lighter
      • normal
      • weight
    • font-style 字体风格

      body{
          font-style:italic;
      }
      

      关键词

      • italic 斜体
      • oblicque 倾斜
    • text-decoration 文本装饰,下划线,上划线,删除线

      body{
          text-decoration: underline;
      }
      

      关键词(可叠加)

      • underline 下划线
      • line-through 删除线
      • overline 上划线
      • none 什么都没有

    web字体

    • .ttf
    • .otf ttf的更新
    • .eot 仅IE支持
    • .svg
    • .woff 当前要支持的标准

      @font-face{
          font-family: "Emblema One"; /*给字体取名字*/
          src:url("http://wickedlysmart.com/hfhtmlcss/chapter8/journal/EmblemaOne-Regular.woff"),
              url("http://wickedlysmart.com/hfhtmlcss/chapter8/journal/EmblemaOne-Regular.ttf");
      }
      body{
          font-family: "Emblema One";
      
      }
      
  • 相关阅读:
    21 viewPager--- hzScrollView ----llContainer
    21 ViewPager RadioGroup
    CLEAR REFRESH FEEE的区别
    在ALV中更新数据库表
    cl_gui_cfw=>flush
    cl_gui_cfw=>dispatch
    数据库表-DD01L DD02L DD03L-保存数据表和域的消息
    SAP 锁机制
    ABAP 搜索帮助
    SAP Basis常用事务代码
  • 原文地址:https://www.cnblogs.com/zy691357966/p/5480266.html
Copyright © 2011-2022 走看看