0

我在文本后面有一个徽标,每次我修改另一个 div 的边距时,它都会改变位置。第一个来自 PUG,第二个来自 css

.column(span="row")    
    h1.first-title Bmw M4 
    img(src="asset/image/M-emblem.png", alt="").icon__M 

img.icon__M{
        max-width: 80px;
        height: auto;
        position: absolute;
        z-index: 0;
        right: 107px;
        top: 177px;
    }

我使用它作为图标的绝对位置和 div 和 z-index 的相对位置来将徽标放在文本后面

4

1 回答 1

0

你在寻找这样的东西吗?

我使用 flexbox 显示将 H1 文本和背景图像居中以添加徽标。

.c {
  background-image:url('https://www.gamasutra.com/db_area/images/news/2018/Jun/320213/supermario64thumb1.jpg');
    background-position:center center;
  background-repeat:no;
  background-size:cover;
    height:200px;
    width:200px;
  display:flex;align-items:center;justify-content:center;
}
<div class="c">
  <h1>BMW X4</h1>
</div>

代码笔: https ://codepen.io/larrytherabbit/pen/gOMaBYy

于 2020-10-13T22:15:23.710 回答