站长资讯网
最全最丰富的资讯网站

css中不加粗怎么写

css中可利用font-weight属性来让元素不加粗,写法为“元素{font-weight:normal;}”;font-weight属性用于设置文本的粗细样式,当值设置为“normal”时,元素会被设成标准字符样式,也就是不加粗的样式。

css中不加粗怎么写

本教程操作环境:windows10系统、CSS3&&HTML5版、Dell G3电脑。

css中不加粗怎么写

在css中可以利用font-weight属性来给元素设置不加粗的样式,font-weight属性用于设置文本的粗细。

属性值如下图所示:

css中不加粗怎么写

下面我们通过示例来看一下怎样使元素不加粗,示例如下:

<!DOCTYPE html> <html lang="en"> <head>     <meta charset="UTF-8">     <meta name="viewport" content="width=device-width, initial-scale=1.0">     <meta http-equiv="X-UA-Compatible" content="ie=edge">     <title>Document</title>     <style type="text/css"> p {font-weight: bold} </style> </head> <body> <p class="normal">这一段不想加粗</p> <p>This is a paragraph</p> <p>This is a paragraph</p> </body> </html>

输出结果:

css中不加粗怎么写

此时并不想让其中一段话加粗,只需要给这段话添加font-weight: normal样式即可:

<!DOCTYPE html> <html lang="en"> <head>     <meta charset="UTF-8">     <meta name="viewport" content="width=device-width, initial-scale=1.0">     <meta http-equiv="X-UA-Compatible" content="ie=edge">     <title>Document</title>     <style type="text/css"> p {font-weight: bold} p.normal {font-weight: normal} </style> </head> <body> <p class="normal">这一段不想加粗</p> <p>This is a paragraph</p> <p>This is a paragraph</p> </body> </html>

输出结果:

css中不加粗怎么写

(学习视频分享:css视频教程)

赞(0)
分享到: 更多 (0)
网站地图   沪ICP备18035694号-2    沪公网安备31011702889846号