如何将一个元素重叠在另一个元素上

时间:2013-05-28 18:36:12

标签: html css

嗨我在页面上有一条<hr>线,但我认为它会被上方的图像切断。有谁知道我怎么做才能让<hr>线与图像重叠?

<img src=".\pncwelcome.png" 
    style="float:right; clear:right; margin-top:-40px;" 
    alt="PNC Welcome Logo"/>
<hr color="black" 
    style="margin-top:30px;" />

3 个答案:

答案 0 :(得分:3)

使用position: absolute;

Check the fiddle.

这样的事情应该有效。

CSS:

.parent {
    position: relative;
}

img {
    width: 200px;
}

hr {
    position: absolute;
    z-index: 50;
    top: 30px;
    right: 0;
    left: 0;
}

HTML:

<div class="parent">
    <hr>
    <img src="http://fanumusic.com/wp-content/uploads/2012/10/Free.jpg">
</div>

答案 1 :(得分:0)

使用Z-index。在css中,如果将hr设置为更高的z-index值,它将在图像上分层。或者,因为您正在浮动图像,所以也要浮动hr,然后设置更高的z-index 在它上面,它仍将与图像重叠。

如果浮动<hr>,则必须在父元素上设置宽度。

使用:

<img src=".\pncwelcome.png" style="z-index: 1; float:right; clear:right; margin-top:-40px;" alt="PNC Welcome Logo"/>
<hr color="black" style="z-index: 2; margin-top:30px;" />

如果不解决它,请改用:

<img src="http://placekitten.com/g/200/300" style="float:right; clear:right; margin-top:-40px; z-index:1;" alt="PNC Welcome Logo"/>
<hr color="black" style="float: left; z-index: 2; margin-top:-30px; width: 100%;" />

答案 2 :(得分:0)

以Savas的答案为基础,因为在<img>也没有得到绝对定位的情况下,我遇到了一些渲染问题...

以下是创建带有图形装饰的<hr>的方式。 <div>的大小适合所使用的图形,所有内容都被视为页面上单个的空间定义单元:

#example {
    display: block;
    position: relative;
    width: 100%;
    height: 92px;
}

#example hr {
    position: absolute;
    z-index: 0;
    top: 46px;
    bottom: 46px;
    margin: 0px;
    width: 100%;
    border: 5px solid #8fcbf1;
}

#example img {
    position: absolute;
    width: 272px;
    height: 92px;
    z-index: 5;
    left: calc(50% - 136px);
}
<div id="example">
  <img src="https://www.google.com/images/branding/googlelogo/1x/googlelogo_color_272x92dp.png" alt="Google" />
  <hr />
</div>

这是小提琴:https://jsfiddle.net/z517fkjx/

此外,它使用calc()进行居中,仅CSS3。