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加粗

  • 相关阅读:
    要搜索内容
    .net core 过滤器
    C# => 写法
    js 数组的forEach 函数
    .net core 下载文件 其他格式
    win10 1903 更改文字大小
    fetch 写法
    C# 匿名对象 增加属性
    ping —— 虚拟机
    selenium验证车贷计算器算法
  • 原文地址:https://www.cnblogs.com/spotman/p/12497523.html
Copyright © 2011-2022 走看看