前端开发行高
<!DOCTYPE html> <html> <head> <meta charset="utf-8" /> <meta name="viewport" content="width=device-width, initial-scale=1"> <title>我是中国人</title> <style> p { background-color: red; /* 行高 = 20px * 2.5 = 50px */ /* font: 700 20px/2.5em "microsoft yahei"; */ /* font: 700 20px/2.5 "microsoft yahei"; */ font: 700 20px/50px "microsoft yahei"; height: 50px; text-align: center; } </style> </head> <body> <p>这是个段落标签</p> </body> </html>