zoukankan      html  css  js  c++  java
  • font-weight: 100-900 在各个浏览器中的表现

    <!DOCTYPE html>
    <html lang="en">
    <head>
      <meta charset="UTF-8">
      <title>font_weight</title>
      <style>
        * {margin: 0;padding: 0;}
        p {font-size: 30px; text-align: center;line-height: 1.5}
      </style>
    </head>
    <body>
      <p style="font-weight: 900">俱怀逸兴壮思飞, 遇上青天揽明月</p>
      <p style="font-weight: 800">俱怀逸兴壮思飞, 遇上青天揽明月</p>
      <p style="font-weight: 700">俱怀逸兴壮思飞, 遇上青天揽明月</p>
      <p style="font-weight: 600">俱怀逸兴壮思飞, 遇上青天揽明月</p>
      <p style="font-weight: 500">俱怀逸兴壮思飞, 遇上青天揽明月</p>
      <p style="font-weight: 400">俱怀逸兴壮思飞, 遇上青天揽明月</p>
      <p style="font-weight: 300">俱怀逸兴壮思飞, 遇上青天揽明月</p>
      <p style="font-weight: 200">俱怀逸兴壮思飞, 遇上青天揽明月</p>
      <p style="font-weight: 100">俱怀逸兴壮思飞, 遇上青天揽明月</p>
    </body>
    </html>

    chrome:

    IE:

    firefox:

    总结: 

    IE fontweight 只有两种字号 : 100-500正常 600-900加粗

    chrome, firefox 有三种字号 : 100-300细 400-500正常 600-900加粗

  • 相关阅读:
    标准输入/输出通道
    不要在纠结负数的表示了
    Coursera公开课-Machine_learing:编程作业7
    Heap堆
    广义表的实现
    二叉树的实现
    模拟实现strstr和strrstr
    栈和队列常考面试题(二)
    栈和队列常考面试题(一)
    vector迭代器失效的几种情况
  • 原文地址:https://www.cnblogs.com/spotman/p/12497523.html
Copyright © 2011-2022 走看看