码迷,mamicode.com
首页 > 其他好文 > 详细

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

时间:2020-03-01 10:38:13      阅读:78      评论:0      收藏:0      [点我收藏+]

标签:info   mic   enter   ott   auto   relative   column   shrink   flow   

父容器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布局,会影响父容器的宽度

标签:info   mic   enter   ott   auto   relative   column   shrink   flow   

原文地址:https://www.cnblogs.com/tufei7/p/12388345.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!