css中可利用font-weight屬性讓元素不加粗,寫法為「元素{font-weight:normal;}」;font-weight屬性用於設定文字的粗細樣式,當值設定為「normal」時,元素會被設為標準字元樣式,也就是不加粗的樣式。
本教學操作環境:windows10系統、CSS3&&HTML5版、Dell G3電腦。
css中不加粗怎麼寫
#在css中可以利用font-weight屬性給元素設定不加粗的樣式, font-weight屬性用於設定文字的粗細。
屬性值如下圖所示:
下面我們透過範例來看一下怎樣使元素不加粗,範例如下:
<!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>
輸出結果:
此時並不想讓其中一段話加粗,只需要給這段話加上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不加粗怎麼寫的詳細內容。更多資訊請關注PHP中文網其他相關文章!