Flexbox 和 CSS 定位中图像上的文本居中
将文本置于图像上居中是常见的布局要求。虽然 Flexbox 提供了强大的对齐选项,但您还可以使用 CSS 定位属性来实现此效果。
使用绝对定位
使用绝对定位使文本在图像上居中:
body { position: relative; } ... .text { position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%); }
使用 Flexbox
或者,Flexbox 可用于图像和文本定位:
body { margin: 0px; } ... .height-100vh { height: 100vh; display: flex; flex-direction: column; position: relative; } ... .text { position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%); color: white; font-weight: bold; } .center-aligned { display: flex; align-items: center; justify-content: center; }
以上是如何使用 Flexbox 和 CSS 定位使文本在图像上居中?的详细内容。更多信息请关注PHP中文网其他相关文章!