如何在相对

时间:2018-01-18 10:06:05

标签: html css position

我的代码工作有问题。我有2 divs,第一个position: relative,第二个绝对。我试图得到的是.stamp div的固定位置,当屏幕超过max-width: 768px时。

如果它看起来像这样会爱:

How it should look

在768px以上的每个分辨率中。

但是,我不知道哪些单位使用了正确的属性来使其响应。

HTML:

  <div class="container">
        <div class="row">
            <div class="col-sm-12">
                <h3 class="slider-header">
                    Lorem ipsum<br/>
                    and <strong>ipsum lorem</strong>
                    <div class="stamp">
                        <img class="img-responsive" src="http://lorempixel.com/80/80"/>
                    </div>
                </h3>
            </div>
    </div>
</div>

CSS

.slider-header .stamp {
    position: absolute;
    z-index: 1;
    width: 90px;
    right: 26%;
    top: 3rem;
}
.slider-header {
    position: relative;
    text-transform: uppercase;
font-size: 2em;
text-align: center;
margin: 40px 0 80px;
}
@media screen and (max-width: 768px) {
    .subpage .stamp {
        position: relative;
        z-index: 1;
        left: 0;
        right: 0;
        top: 30px;
        width: 100%;
    }

小提琴: https://jsfiddle.net/zz6r7n4w/10/

0 个答案:

没有答案