123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263 |
- <!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>
- /*
- 1.font-size 字体大小
- 浏览器可支持最小字体为12px
- 浏览器根字体 16px
- 2.font-weight 字体粗细
- 100~300 细 lighter
- 400~500 正常 normal
- 600~900 粗 bold bolder
- 3.font-family 字体
- 4.font-style 字体样式
- normal 正常
- italic 倾斜
- oblique 倾斜(一点弧度 不常用)
- 文字在已知宽高的盒子内居中:
- 水平:text-align(文本位置):center(left/right)
- 垂直:line-height(行间距):当前高度;
- 圆角框:
- border-radius:50%;圆形
- border-bottom-right-radius 右下
- border-bottom-left-radius 左下
- border-top-right-radius 右上
- border-top-left-radius 左上
- */
- div {
- width: 400px;
- height: 400px;
- border: 3px solid #0f0;
- text-align: center;
- line-height: 400px;
- /* border-radius: 50%; */
- border-bottom-right-radius: 10px;
- }
- p {
-
- /* font-size: 32px; */
- /* 缩放 0~1 */
- /* scale: 0.5; */
- font-weight: bolder;
- font-family:'Times New Roman', Times, serif;
- font-style: oblique;
- }
- </style>
- </head>
- <body>
- <div>
- 今天天气真好
- </div>
- </body>
- </html>
|