12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849 |
- <!DOCTYPE html>
- <html lang="en">
- <head>
- <meta charset="UTF-8">
- <meta http-equiv="X-UA-Compatible" content="IE=edge">
- <meta name="viewport" content="width=device-width, initial-scale=1.0">
- <title>字体的简写属性</title>
- <style>
- /*
- font 可以设置字体相关的所有属性
- 语法:
- font:字体大小/行高 字体族
- 行高可以省略不写,如果不写会使用默认值
- */
- div{
- border: 1px red solid;
- /* height: 2; */
- /* font-size: 50px;
- font-family: 'Times New Roman', Times, serif; */
- /* font: 50px 'Times New Roman', Times, serif; */
- /* font: 50px/2 'Times New Roman', Times, serif; */
- /* height: 2; */
-
- font:bold italic 50px 'Times New Roman', Times, serif;
- /*
- font-weight 字重 字体的加粗
- 可选值:
- normal:默认值,不加粗
- bold:加粗
- 100-900 九个级别(没什么用)
- font-style 字体的风格
- normal 正常的
- italic 斜体
- */
- /* font-weight: bold;
- font-style: italic; */
- }
- </style>
- </head>
- <body>
- <div>今天天气真不错 Hello World</div>
- </body>
- </html>
|