Make an element as wide as the grandparent

后端 未结 6 1317
猫巷女王i
猫巷女王i 2020-12-17 21:59

I have the following markup where #content is 80% wide and contains .slide elements. I want the slides to be as wide as their grandparent (i.e. bod

6条回答
  •  独厮守ぢ
    2020-12-17 22:27

    You can try this:

    .slide {
      height: 6em;
      background: indianred;
      width: 100vw;
      margin-left: 50%;
      transform: translateX(-50%);
    }
    

    JSFiddle Demo

提交回复
热议问题