css3 - 这种情景怎么解释?display:flex 遭遇 white-space: nowrap;
问题描述
html如下,使用了flex-box布局,左边图片的img-box定宽,右边的css定义了flex-item,然后对shop-name进行了单行不换行截断,这时候就发现左边的图片被挤扁了,小于定的宽度。发生这个情况在chrome上,ios和安卓的微信下正常.
chrome效果见图:
<a href='https://www.haobala.com/wenda/5874.html#' class='coupons-item flex'> <p class='img-box'><img src='https://www.haobala.com/wenda/1.jpg' /></p> <p class='flex-item'><h3 class='shop-name'>有家餐厅(京华城店)</h3><p class='text'>满100减20</p> </p></a>
(scss)
.coupons-item{ padding:1rem; color:#000; text-decoration: none; border-bottom:1px solid $gray-border-color; .img-box{ width:6rem; height:6rem; margin-right:1rem; @include radius(50%); overflow: hidden; img{ display: block; width:100%; height:100%; @include radius(50%); } } .shop-name{ line-height:2; height:3.6rem; font-weight:normal; font-size:1.8rem; overflow: hidden; -ms-text-overflow: ellipsis; text-overflow: ellipsis; white-space: nowrap; } .text{ font-size:1.4rem; }}
问题解答
回答1:之前遇到过,解决办法:首先.flex-item设置下最小宽度
min-width:0
然后.shopname设置下宽度
width:100%回答2:
shop-name定义宽度浮动试下
回答3:给.shop-name设一个最大宽度试试吧
相关文章:
1. MySQL中无法修改字段名的疑问2. angular.js - angularjs的自定义过滤器如何给文字加颜色?3. docker镜像push报错4. angular.js - angular内容过长展开收起效果5. javascript - 如何让移动端网页的输入框固定在底部?6. 请教各位大佬,浏览器点 提交实例为什么没有反应7. python的前景到底有大?如果不考虑数据挖掘,机器学习这块?8. python - flask表单 如何把提交多行数据在服务端读取出来?9. 大家好,请问在python脚本中怎么用virtualenv激活指定的环境?10. 网页爬虫 - 用Python3的requests库模拟登陆Bilibili总是提示验证码错误怎么办?
