侧边栏壁纸
博主头像
简单的博客博主等级

种瓜得瓜,种豆得豆。

  • 累计撰写 15 篇文章
  • 累计创建 8 个标签
  • 累计收到 2 条评论

目 录CONTENT

文章目录

HTML CSS布局

简单
2024-06-05 / 0 评论 / 0 点赞 / 20 阅读 / 903 字

HTMLCSS 常见布局要求(持续更新...)

图片作为背景非 background-image 属性实现

HTML

<section class="product-block">
  <div class="product-bg">
    <img src="imgUrl" alt="">
  </div>
</section>

CSS(less)

.product-block {
  position: relative;
  .product-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1; 
    img {
      object-fit: cover;
      width: 100%;
      height: 100%;
    }
  }
}

0

评论区