将div背景图像与<ul>并排放置,但不使用FLOAT,可以使用以下方法:
div, ul {
display: inline-block;
}
div {
width: 50%;
background-image: url('背景图像地址');
background-size: cover;
}
ul {
width: 50%;
list-style-type: none;
}
.container {
display: flex;
}
div {
flex: 1;
background-image: url('背景图像地址');
background-size: cover;
}
ul {
flex: 1;
list-style-type: none;
}
.container {
display: grid;
grid-template-columns: 1fr 1fr;
}
div {
background-image: url('背景图像地址');
background-size: cover;
}
ul {
list-style-type: none;
}
以上是三种常用的方法,可以将div背景图像与<ul>并排放置,而不使用FLOAT。根据具体情况选择适合的方法,并根据需要调整元素的宽度和其他样式。
领取专属 10元无门槛券
手把手带您无忧上云