父容器flex布局,子控件absult布局,会影响父容器的宽度

Posted tufei7

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了父容器flex布局,子控件absult布局,会影响父容器的宽度相关的知识,希望对你有一定的参考价值。

父容器flex布局,子控件absult布局,会影响父容器的宽度

应该是这样的:

技术图片

 

 

 实际是这样的:

技术图片

 

 

 父容器的宽度不是预想的宽度,变小了

原来的错误代码:

.kVideoCarrier {
  display: flex;
  flex-direction: column;
  width: 80%;
  /* flex-grow:0;
  flex-shrink:0; */
  margin-right: 80rpx;
  background-color: brown;
}

.kvImageView {
  width: 100%;
  height: 200rpx;
  background-color: orange;
  position: relative;
}

.kvPlayIcon {
  position: absolute;
  width: 50rpx;
  height: 50rpx;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}

正确代码:

.kVideoCarrier {
  display: flex;
  flex-direction: column;
  width: 80%;
  flex-grow:0;
  flex-shrink:0;
  margin-right: 80rpx;
  background-color: brown;
}

.kvImageView {
  width: 100%;
  height: 200rpx;
  background-color: orange;
  position: relative;
}

.kvPlayIcon {
  position: absolute;
  width: 50rpx;
  height: 50rpx;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}

解释:

  • 0 = don‘t grow (shorthand for flex-grow) 不允许增长
  • 0 = don‘t shrink (shorthand for flex-shrink) 不允许收缩

https://stackoverflow.com/questions/23794713/how-can-i-have-two-fixed-width-columns-with-one-flexible-column-in-the-center

以上是关于父容器flex布局,子控件absult布局,会影响父容器的宽度的主要内容,如果未能解决你的问题,请参考以下文章

flex 整理 笔记

解决flex布局导致子元素的宽度无效的问题

flex布局中父容器属性部分演示效果

flex布局常见用法小结

Flex布局

阿里矢量图的应用--flex布局--vue中$router和$route的方法