不必是一张桌子就可以成为div。
我的图片有一些透明的部分可以融入。顶部需要与下半部分混合不同的背景颜色。
所以在我的脑海里会有2行的表,一行有一种背景颜色,另一行有另一种背景颜色,但图像跨越两行。
这是否可以在HTML / CSS中使用。这样可以避免我将图像分成两部分。
答案 0 :(得分:0)
图像或行是固定大小的吗?然后你可以玩背景定位和/或尺寸。
.row {
height: 100px;
background-image: url(http://www.fillmurray.com/1000/200);
border: 1px solid red;
width: 500px;
margin: auto;
}
.one {
background-position: top center;
margin-top: 1em;
}
.two {
background-position: bottom center;
margin-bottom: 1em;
}
<div class="row one"></div>
<div class="row two"></div>
逻辑上,
或,虽然将div中的“行”包装起来并将bg图像放在其上可能会更容易。
.row {
height: 100px;
background-image: url(http://www.fillmurray.com/1000/200);
border:1px solid red;
width: 500px;
margin: auto;
}
.wrapper {
background-image: url(http://www.fillmurray.com/1000/200);
width: 500px;
background-position: center;
margin: 1em auto;
}
.wrapper .row {
background-image: none;
}
<div class="wrapper">
<div class="row"></div>
<div class="row"></div>
</div>