- objective-c - iOS 5 : Can you override UIAppearance customisations in specific classes?
- iphone - 如何将 CGFontRef 转换为 UIFont?
- ios - 以编程方式关闭标记的信息窗口 google maps iOS
- ios - Xcode 5 - 尝试验证存档时出现 "No application records were found"
每当 flexbox 内的元素包裹时,它们往往会拉伸(stretch) flexbox,在一侧留下额外的空间。它仅在元素包装时发生。我该如何去除多余的间距?
HTML
<div>
<div class="red">
<div></div>
<div></div>
<div></div>
<div></div>
<div></div>
</div>
<div class="green">
<div></div>
</div>
</div>
CSS
body > div {
display: flex;
width: 34rem;
justify-content: space-between;
border: 1px solid black;
}
body > div > div {
display: flex;
flex-flow: row wrap;
}
body > div > div.red {
background: rgba(255, 0, 0, .1);
}
body > div > div.green {
background: rgba(0, 255, 0, .1);
flex-shrink: 0;
}
body > div > div > div {
margin: 1rem;
height: 5rem;
width: 5rem;
background: rgba(0, 0, 0, .1);
}
最佳答案
据我所知,所有标准都已达到。
justify-content: space-between
减少了红色框左右两侧的填充。flex: 0 0 auto
。flex: 2 0 auto
的高度。OP 声明固定宽度将不起作用,因为内容(即 flex 元素)可以更改宽度并破坏布局。真正构成固定布局的是外容器是刚性的,具有绝对值测量和/或最大限制长度。固定的、液体的、 react 灵敏的、适应性强的、在白 Wine 中炒的等等都不是真正的问题。真正的问题是,在处理不均匀的行时,行方向的 flexbox 不能很好地处理计算。因此,为了确保内容的统一形成,我发现:
justify-content: space-around
将完美运行。visibility: hidden
或 opacity 使最后一个元素不可见: 0
, 但不是 display: none
详情在JS区(没有添加JS,只是用来评论的空间)。
/* Changes
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
CSS
line 1 to 8
|| Needed basic reset
=====================
line 12
|| To demonstrate behavior in liquid layout.
=====================
line 19 to 24
|| Needed some type of measurement, otherwise it
|| will expand to fill in that extra space on
|| the right.
|| flex was set to shrink when width has reached
|| it's basis of 62%.
======================
line 22 to 28
|| Width and flex growth/shrink/basis were added
|| for the same reasons as explained of the
|| prior ruleset.
|| max-width: 380px is the limit for the red
|| box before the content is askew.
|| justify-content: space-around was added in
|| order to stabilize it's width.
======================
line 11, 31 to 33
|| Changed rem units to em because it's ideal for
|| a responsive layout. Although rem is a
|| relative measurement like it's sister
|| property, em, it's based on the root's default
|| so directly changing that measurement will
|| yield a change, whilst with em, only the
|| container (or parent) needs to resize on the
|| fly.
======================
line 44 to 46
|| This ghost flex item is the key to the red
|| boxes' content being able to maintain a
|| uniformed layout.
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
HTML
line 8
|| Added an extra div in div.red to be the ghost
|| flex item. Flex items will exhibit a uniform
|| behavior when there are an equal amount of
|| them in each row.
*/
html,
body {
height: 100%;
width: 100%;
margin: 0;
padding: 0;
box-sizing: border-box;
}
body > div {
display: flex;
width: 100vw;
justify-content: space-between;
border: 1px solid black;
}
body > div > div {
display: flex;
flex-flow: row wrap;
}
body > div > div.red {
background: rgba(255, 0, 0, .1);
flex: 0 1 62%;
min-width: 60%;
justify-content: space-around;
}
body > div > div.green {
background: rgba(0, 255, 0, .1);
justify-content: space-around;
flex: 0 1 22%;
width: 20%;
}
body > div > div > div {
margin: 1em;
height: 5em;
width: 4em;
background: rgba(0, 0, 0, .1);
}
div.red > div:last-of-type {
opacity: 0;
}
<div>
<div class="red">
<div></div>
<div></div>
<div></div>
<div></div>
<div></div>
<div></div>
</div>
<div class="green">
<div></div>
</div>
</div>
关于css - 删除带有包裹子项的 flexbox 上的额外间距?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37887421/
我配置了我的RouteInitializer如下: class AppRouteInitializer implements RouteInitializer { init(Router rout
我正在尝试从 Android 应用程序发送短信。我正在使用 PendingIntent 以便我可以使用 Broadcast Receiver 检查它是否发送正常。由于 sendTextMessage
目录 简介 1 "额外"字段是什么 1.1 "额外"是指与业务无关 1.2 产生
应用程序读取 JSON 数据。然后它会将其放入 ListView (正确),但在按下某个项目后,我总是会得到显示的相同值。下面的代码我认为是问题所在,但我找不到。 try{ JSONArray
我正在使用以下代码 (Kotlin) 创建通知 val builder = NotificationCompat.Builder(ctx) ........ .set
我有一个问题。现在我正在使用 3 个面板,mainPanel 和其他 2 个面板(btnPanel 和 iconPanel)。所以问题是当我按下“重置”按钮时,我删除了 iconPanel 并再次添加
这是我的 html: Settings Export Import 和CSS: span.button { float:right; margin-righ
我正在尝试将一个结构编码为 JSON,然后将其插入我的 Mongo 数据库,但不断出现此错误:%!(EXTRA main.Test={575590180 Me})。我究竟做错了什么?我完全从我从事的另
嘿,我遇到了这些 latex 格式问题,有人可以提供一些帮助吗? .tex 文件: \begin{table}{} \renewcommand{\arraystretch}{1.1} \c
我在 FragmentPagerAdapter 中使用了 Fragment 的 ArrayList。 我想在 saveState() 中保存此 ArrayList 的状态,并在 restoreStat
我做了this MapKit-教程 一切正常,但如何为我的 pin 添加额外的属性? 这是我的课车: import Foundation import MapKit class Car: NSObje
关于 Android intent 将提供的附加功能有哪些文档? 更新: 我做了一些进一步的调查。我知道我们可以假设每个 Intent 都不会解析任何数据或额外内容,除非有明确记录。此外,一些(但不是
我在 python3.4.3 上使用 SqlAlchemy 来管理 MySQL 数据库。我正在创建一个表: from datetime import datetime from sqlalchemy
我正在使用 bootstrap 创建网页。我在两个 block (内容和标题)上派生了正文。在内容 block 中,我有 div 类 .container .sameTable 在里面我有 div 类
我在Windows 7上的MinGW和MSYS下使用gfortran构建了一些fortran程序。但是当我在未安装MinGW和MSYS的其他计算机上运行它们时,系统总是要求一些dll,例如libgfo
第一个元素的右侧似乎有额外的间距,我不知道它是从哪里来的。有人可以帮助我吗? 这是我使用的代码: http://jsfiddle.net/srabeat/tenx4y1c/1/ for (i = 0;
我使用 fs-extra 收到以下错误: ERROR { [Error: EPERM: operation not permitted, unlink 'C:\Projects\xxx\branche
我正在尝试在 CBC 模式下使用 AES-128 加密 320 字节的二进制数据,并将密码存储到一个文件中。输出文件应该是 320 字节,但我得到了 336 字节。这是我的代码: #include
我有一个特定的要求,我必须从我的 Activity 中触发浏览器上的 url。我可以使用以下代码执行此操作: Intent browserIntent = new Intent( Intent.A
我正在使用 JMS DI 注入(inject)带有注解的服务: use JMS\DiExtraBundle\Annotation as DI; /** * @DI\Service("foo.bar.
我是一名优秀的程序员,十分优秀!