css 使元素成为页面或父级的整个宽度,来源:https://css-tricks.com/full-width-containers-limited-width-parents/?utm_sourc

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了css 使元素成为页面或父级的整个宽度,来源:https://css-tricks.com/full-width-containers-limited-width-parents/?utm_sourc相关的知识,希望对你有一定的参考价值。

/* for elements that need to be full width of the window */
.full-width {
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
}

/* for elements that need to be full width of a parent container */
.parent {
  width: 60%;
  margin: 0 auto;
  /* creates 20% margins on either side */
}
.full-width {
  /* 1/3 of 60% = the 20% margin on either side */
  margin-left: -33.33%;
  margin-right: -33.33%;
}

以上是关于css 使元素成为页面或父级的整个宽度,来源:https://css-tricks.com/full-width-containers-limited-width-parents/?utm_sourc的主要内容,如果未能解决你的问题,请参考以下文章

CSS - Div获取父级的剩余宽度空间

CSS定位

CSS 技巧汇总

css回顾2

使用 CSS 显示和隐藏具有不同父级的 div 元素

在不改变状态、道具或父级的情况下反应子级渲染