font属性问题

来源:12-9 画个圈圈 - 使用border为盒子添加边框(一)

qq_人生是一场修行_03188787

2016-07-15 15:49

font-family与font-weight的区别

font-weight字面理解为字重,它有几种形式?

写回答 关注

6回答

  • 慕粉8081723
    2016-07-15 16:07:08

    font-family一般是定义使用的字体

    eg:

    p#songti { font-family:"宋体";}
    p#Arial { font-family:Arial;}
    p {font-family:"宋体",Arial;}

    font-weight一般是定义字体的粗细

    形式:

    normal:正常,等同于 400

    bold:粗体,等同于 700

    bolder:更粗

    lighter:更细

    100 | 200 | 300 | 400 | 500 | 600 | 700 | 800 | 900:字体粗细的绝对值

    eg:

    p#normal{font-weight:normal;}
    p#bold{font-weight:bold;}
    p#100{font-weight:100;}
    p#900{font-weight:900;}
    p#bolder{font-weight:bolder;}
    p#lighter{font-weight:lighter;}


  • 黄昏暁
    2016-07-15 15:59:34
    font-family:是选择相应的字体,例如微软雅黑,宋体  英文字体等;font-weight:选择字体的粗细状态。最常用的就是normal|bold|
  • TZeng
    2016-07-15 15:58:26

     前者是字体类型比如  宋体  黑体 等等     后者是字体的粗细  如  100-700 越大越粗    或者  lighter   medium  bold bolder 


  • qq_慕姐6023852
    2016-07-15 15:58:19

    font-family是字体,比如微软雅黑,宋体等。

    font-weight是设置字体样式,比如加粗

  • 宝慕林6972327
    2016-07-15 15:54:57

    font-weight:bold;是加粗的意思

    font-family是字体

  • qq_天助自助者_03319791
    2016-07-15 15:54:12

    font-family是字体,font-weight是文字的粗细

初识HTML(5)+CSS(3)-升级版

HTML(5)+CSS(3)基础教程8小时带领大家步步深入学习标签用法和意义

1225813 学习 · 18234 问题

查看课程

相似问题