qq_人生是一场修行_03188787
2016-07-15 15:49
font-family与font-weight的区别
font-weight字面理解为字重,它有几种形式?
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;}
前者是字体类型比如 宋体 黑体 等等 后者是字体的粗细 如 100-700 越大越粗 或者 lighter medium bold bolder
font-family是字体,比如微软雅黑,宋体等。
font-weight是设置字体样式,比如加粗
font-weight:bold;是加粗的意思
font-family是字体
font-family是字体,font-weight是文字的粗细
初识HTML(5)+CSS(3)-升级版
1225813 学习 · 18234 问题
相似问题