How do I center a text over an image in css?
7条回答 情话喂你 (楼主) 2020-11-22 04:12 A small and short way of doing the same HTML Heading 3 Heading 5 CSS .image { position: relative; margin-bottom: 20px; width: 100%; height: 300px; color: white; background: url('../../Images/myImg.jpg') no-repeat; background-size: 250px 250px; } 0 讨论(0) 查看其它7个回答 发布评论: 提交评论 加载中... 验证码 看不清? 提交回复
A small and short way of doing the same
HTML
Heading 3 Heading 5
CSS
.image { position: relative; margin-bottom: 20px; width: 100%; height: 300px; color: white; background: url('../../Images/myImg.jpg') no-repeat; background-size: 250px 250px; }