1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859 |
- <!DOCTYPE html>
- <html lang="en">
- <head>
- <meta charset="UTF-8">
- <meta name="viewport" content="width=device-width, initial-scale=1.0">
- <title>Document</title>
- <style>
- /*
- font-weight 字体粗细
- 粗 bold bolder 600-900
- 正常 normal 400 500
- 细 lighter 100-300
- font-size 字体大小
- 浏览器跟字体 16px
- 浏览器最小字体 12px
- font-family 字体
- font-style 字体样式
- italic 倾斜
- normal 正常
- */
- p {
- color: #f00;
- /* font-weight: 300; */
- font-size: 30px;
- font-family: 'Courier New', Courier, monospace;
- font-style: normal;
- }
- /* p {
- color: blue;
- } */
- #aaa {
- color: #00f;
- }
- .bbb {
- color: #ff0;
- }
- /*
- 2.id选择器
- 在body中:
- 在开始标签中 id='xxx'
- 在style中:
- #xxx{样式}
- 3.类选择器
- 在body中:
- 在开始标签中 class='xxx'
- 在style中:
- .xxx{样式}
- */
- </style>
- </head>
- <body>
- <p>
- 你好啊
- </p>
- <p id="aaa">哈哈哈</p>
- <p class="bbb">哦哦哦哦</p>
- </body>
- </html>
|