html 图片文字全部居中

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<head>
<style>
.vcenter {
position:absolute;
left:50%;
top:50%;
translateX(-50%);
translateY(-50%);
border: 3px solid black;
}
</style>
</head>

<body>
<div align="middle">
<img src="../Images/2.jpg" alt="2.jpg"/>
<div class="vcenter">
<p>多行文字1</p>
<p>多行文字2</p>
</div>
</div>
</body>

html 图片文字全部居中
https://roachlin.github.io/2021-06-20-html-middle/
作者
RoachLin
发布于
2021年6月20日
许可协议