24 lines
564 B
HTML
24 lines
564 B
HTML
<!DOCTYPE html>
|
|
<html lang="zh-CN">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>09_文本对齐_垂直</title>
|
|
<style>
|
|
/*
|
|
1.默认顶部对齐
|
|
2.居中 height=line-height
|
|
3. 底部 line-height =(height *2) - font-size
|
|
*/
|
|
div {
|
|
font-size: 40px;
|
|
height: 400px;
|
|
line-height: 760px;
|
|
background-color: skyblue;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div>逝水无痕</div>
|
|
</body>
|
|
</html> |