【发布时间】:2020-04-09 04:45:07
【问题描述】:
我正在尝试使用 CSS 将文本与图像一起居中。我认为变换标签会将它沿图像居中,但这一定是针对不同的情况。
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<style>
img{
width: 100px;
}
.text {
font-size: 50px;
transform: translateY(-50%);
}
</style>
</head>
<body>
<div class="class">
<img src="image.jpg">
<span class="text">Center text</span>
</div>
</body>
【问题讨论】:
标签: html css image text centering