我想知道如何让文字部分覆盖图像。
屏幕截图:→Mocking UnitOfWork with Moq and EF 4.1。 (我已经用蓝色盘旋了我想要的东西!)
我在谷歌搜索过这个,但我收到的唯一结果是here,这不是我想要的。
非常感谢任何帮助。
答案 0 :(得分:0)
只需在文字元素中使用 position: relative
,然后将其偏移一些值。
<强>代码:强>
h1 {
position: relative;
top: 50%;
right: 6%;
}
jsFiddle:→here。
示例:强>
#wrapper {
display: flex;
justify-content: center;
}
#parent {
width: 550px;
height: 343px;
background-image:
url(https://media-cdn.tripadvisor.com/media/photo-s/08/73/aa/76/trolltunga.jpg);
background-size: contain;
}
#child {
position: relative;
top: 50%;
right: 6%;
}
&#13;
<div id="wrapper">
<div id="parent">
<h1 id="child">A Fantastic Title<br/>→</h1>
</div>
</div>
&#13;