cssfontweight的简单介绍
CSS 验证:“18px font-weight: bold”不是属性“height”的有效值.请问你是怎么解决的啊,我也遇到了
font:bold 18px; 你可以直接这样写
bold意思是粗体,18px设置的是字体大小。
你的代码错了
html中字体的粗细怎么设置?字体大小是font-size,那粗细怎么设置的?
需要准备的材料分别有:电脑、浏览器、html编辑器。
1、首先,打开html编辑器,新建html文件,例如:index.html,编写问题基础代码。
2、在index.html中的div标签中,输入样式代码:style="font-weight: 800"。
3、浏览器运行index.html页面,此时div标签文本的粗细被成功改变了。
css里写font:“”,“”里面各项的属性是什么呢?
语法:
font : font-style || font-variant || font-weight || font-size || line-
height || font-family
font : caption | icon | menu | message-box | small-caption | status-bar
取值:
font-style :normal | italic | oblique
font-variant : normal | small-caps
font-weight:normal | bold | bolder | lighter | 100 | 200 | 300 | 400 | 500 | 600 | 700 | 800 | 900
font-size
line-height
font-family
caption : CSS2 使用有标题的系统控件的文本字体(如按钮,菜单等)
icon : CSS2 使用图标标签的字体
menu : CSS2 使用菜单的字体
message-box : CSS2 使用信息对话框的文本字体
small-caption : CSS2 使用小控件的字体
status-bar : CSS2 使用窗口状态栏的字体
示例:
p { font: italic small-caps 600 12pts/18pts 宋体; }
p { font: italic small-caps 600 12pts/150% Courier; }
p { font: italic small-caps 600 12pts/1.5 Courier; }
p { font: italic small-caps 600 12pts/18pts Courier; }
p { font: /18pts serif; }
p { font: oblique 100 24pts; }
H1 { font: 15pt/17pt bold "Arial" normal }