- android - 多次调用 OnPrimaryClipChangedListener
- android - 无法更新 RecyclerView 中的 TextView 字段
- android.database.CursorIndexOutOfBoundsException : Index 0 requested, 光标大小为 0
- android - 使用 AppCompat 时,我们是否需要明确指定其 UI 组件(Spinner、EditText)颜色
开始之前:请注意,我使用了无前缀规范的 flexbox 语法,因此要了解 flexbox 的工作原理,请查看 Chrome 中的示例(或者 Firefox 应该也可以)。
以下面的例子为例,一个简单的三列网格系统:
/**
* Makeshift reset
*/
* { margin: 0; padding: 0; }
html { box-sizing: border-box; }
*, *:before, *:after { box-sizing: inherit; }
/**
* The Grid
*/
.grid {
outline: 1px solid blue;
margin-left: -24px;
}
/* Clearfix */
.grid:after {
content: "";
display: table;
clear: both;
}
.column {
outline: 1px solid red;
float: left;
padding-left: 24px;
width: 33.333%;
}
<div class="grid">
<div class="column">
<h2>Some Headline</h2>
<p>Left column</p>
</div>
<div class="column">
<h2>Short</h2>
<p>Center column</p>
</div>
<div class="column">
<h2>Another random headline</h2>
<p>Right column</p>
</div>
</div>
由于列的内容高度不同,列的高度不相等——标准 CSS 问题。
现在有了 Flexbox,通过在网格中添加 display: flex;
很容易解决这个问题:
.grid {
display: flex;
outline: 1px solid blue;
margin-left: -24px;
}
/**
* Makeshift reset
*/
* { margin: 0; padding: 0; }
html { box-sizing: border-box; }
*, *:before, *:after { box-sizing: inherit; }
/**
* The Grid
*/
.grid {
display: flex;
outline: 1px solid blue;
margin-left: -24px;
}
/* Clearfix */
.grid:after {
content: "";
display: table;
clear: both;
}
.column {
outline: 1px solid red;
float: left;
padding-left: 24px;
width: 33.333%;
}
<div class="grid">
<div class="column">
<h2>Some Headline</h2>
<p>Left column</p>
</div>
<div class="column">
<h2>Short</h2>
<p>Center column</p>
</div>
<div class="column">
<h2>Another random headline</h2>
<p>Right column</p>
</div>
</div>
现在列高是相等的,但是段落的第一行没有对齐,所以看起来还是有点断。
当然我自己试过了,遇到了各种问题:
display:flex
添加到.grid
时,只有直接子项是flex 元素。这意味着我们可以控制 .column
,但不能控制列中的内容。display:flex
添加到 .column
时,我们现在可以控制列的内容,但这没有多大用处,因为我们有三个独立的 flex 元素。我得到的最接近的方法是将 align-items: flex-end
添加到 .grid
中,但它看起来仍然有问题,只是有点不同:
/**
* Makeshift reset
*/
* { margin: 0; padding: 0; }
html { box-sizing: border-box; }
*, *:before, *:after { box-sizing: inherit; }
/**
* The Grid
*/
.grid {
display: flex;
align-items:flex-end;
outline: 1px solid blue;
margin-left: -24px;
}
/* Clearfix */
.grid:after {
content: "";
display: table;
clear: both;
}
.column {
outline: 1px solid red;
float: left;
padding-left: 24px;
width: 33.333%;
}
<div class="grid">
<div class="column">
<h2>Some Headline</h2>
<p>Left column</p>
</div>
<div class="column">
<h2>Short</h2>
<p>Center column</p>
</div>
<div class="column">
<h2>Another random headline</h2>
<p>Right<br>column</p>
</div>
</div>
有什么办法可以解决吗?
最佳答案
你可以尝试添加
.column {
display: flex;
flex-direction: column;
justify-content: space-between;
}
/**
* Makeshift reset
*/
* { margin: 0; padding: 0; }
html { box-sizing: border-box; }
*, *:before, *:after { box-sizing: inherit; }
/**
* The Grid
*/
.grid {
display: flex;
outline: 1px solid blue;
margin-left: -24px;
}
/* Clearfix */
.grid:after {
content: "";
display: table;
clear: both;
}
.column {
outline: 1px solid red;
float: left;
padding-left: 24px;
width: 33.333%;
display: flex;
flex-direction: column;
justify-content: space-between;
}
<div class="grid">
<div class="column">
<h2>Some Headline</h2>
<p>Left column</p>
</div>
<div class="column">
<h2>Short</h2>
<p>Center column</p>
</div>
<div class="column">
<h2>Another random headline</h2>
<p>Right column</p>
</div>
</div>
或者
.column {
display: flex;
flex-direction: column;
justify-content: space-between
}
.column > h2 {
flex-grow: 1;
}
/**
* Makeshift reset
*/
* { margin: 0; padding: 0; }
html { box-sizing: border-box; }
*, *:before, *:after { box-sizing: inherit; }
/**
* The Grid
*/
.grid {
display: flex;
outline: 1px solid blue;
margin-left: -24px;
}
/* Clearfix */
.grid:after {
content: "";
display: table;
clear: both;
}
.column {
outline: 1px solid red;
float: left;
padding-left: 24px;
width: 33.333%;
display: flex;
flex-direction: column;
}
.column > h2 {
flex-grow: 1;
}
<div class="grid">
<div class="column">
<h2>Some Headline</h2>
<p>Left column</p>
</div>
<div class="column">
<h2>Short</h2>
<p>Center column</p>
</div>
<div class="column">
<h2>Another random headline</h2>
<p>Right column</p>
</div>
</div>
或者
.column {
display: flex;
flex-direction: column;
justify-content: space-between
}
.column > h2 {
margin-bottom: auto;
}
/**
* Makeshift reset
*/
* { margin: 0; padding: 0; }
html { box-sizing: border-box; }
*, *:before, *:after { box-sizing: inherit; }
/**
* The Grid
*/
.grid {
display: flex;
outline: 1px solid blue;
margin-left: -24px;
}
/* Clearfix */
.grid:after {
content: "";
display: table;
clear: both;
}
.column {
outline: 1px solid red;
float: left;
padding-left: 24px;
width: 33.333%;
display: flex;
flex-direction: column;
}
.column > h2 {
margin-bottom: auto;
}
<div class="grid">
<div class="column">
<h2>Some Headline</h2>
<p>Left column</p>
</div>
<div class="column">
<h2>Short</h2>
<p>Center column</p>
</div>
<div class="column">
<h2>Another random headline</h2>
<p>Right column</p>
</div>
</div>
关于html - CSS flex 盒 : Is it possible to align paragraphs in the following setup?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27759688/
我有一个包含需要排序的不同项目的列表。但还有一个额外的问题:某些元素只允许出现在列表中的特定位置。 示例(请查看 http://jsfiddle.net/pYL32/2/ ):有一个包含元素 foo、
关于https://code.google.com/p/guava-libraries/wiki/UsingAndAvoidingNullExplained据解释,guava(以及后来的 java 8
我有一个名为 say CalculationOutcome 的类(class)和 FileHashOutcome .他们的构造函数有 (ActualResult, Throwable)参数,并在 Co
我正在使用pycharm,我的代码在分屏上。当我运行调试时,会弹出调试/运行窗口,它非常分散注意力并且限制了我在调试时可以查看的代码量......但我想保持它,因为我来回走动;另外,我想要调试变量的完
这个问题已经有答案了: 已关闭11 年前。 Possible Duplicate: javascript object, access variable property name? 我确信这是可以完
if (typeof Object.create !== 'function') { Object.create = function (o) { function F() {
在将实体存储在 redis 中作为序列化二进制 blob 的应用程序中工作。我有多个客户端处理同一个数据集,我希望使用乐观并发。 我的要求是: 在一次往返中读取特定键的序列化实体 将修改后的实体写回r
这个问题是指 C/x86 上使用的 IEEE 标准浮点数。 是否可以将任何数字(即不包括 NaN 之类的特殊值)浮点数或 double 数表示为十进制字符串,以便将该字符串转换回浮点数/ double
我的团队目前正在与 Lua 合作,创建一个 android 游戏。我们遇到的一件事是表面上无法创建重载构造函数。 我习惯于使用默认值设置一个对象,然后在需要时使其过载。 前任: apples() {
如何在 Scene Kit 中使用 SCNCamera 获得像鱼眼镜头那样的失真? 类似于这种图像的“鞠躬”: //正如 Rickster 指出的那样,这种失真被称为“桶形失真”。 从文档中,这是让我
我想问是否有一种方法可以多次评估 javascript 术语,而不需要一遍又一遍地解析一个术语。 说,您想要评估 var1/var2+Math.sqrt(var3) 每秒 20 次。 使用时这可能会出
我想知道在技术上是否可以在 java applet 中创建代理。 那么是否可以通过这个 java applet 代理路由所有进一步的浏览器请求? 例如,如果用户要浏览 google.com,默认行为是
我有以下代码,我想返回一个 bool 值或一个元组。 (函数 isvariable 和 dont_care 都返回 bool 值,仅供引用) let match_element (a, b) = if
这个问题困扰我很久了。我想要一个二叉树(或类似的嵌套结构)上的迭代器,它高效、简单且Pythonic。例如,对于这样的用法: for value in values(root): do_som
目前我有以下 MySQL 查询: SELECT COUNT(*) AS `count`, `v`.`value` FROM `client_entity_int` AS `v` INN
我正在使用 Angular 开发应用程序,客户端是 100% JS。我即将替换使用 ExtJS 制作的旧应用程序,但我不会更改服务器端。只有客户端从头开始重新编码。 我想在任何地方和任何机器上处理这个
有没有办法在运行时检索实例的声明类?例如: public class Caller { private JFrame frame = new JFrame("Test"); priva
我目前正在请求 MySQL 数据库使用 PDO 计算一些计数和总和。这个过程可能需要一段时间,如果用户突然想浏览另一个页面,他可能会停留在浏览器前面。 我试图弄清楚是否可以使用 PDO 启动 MySQ
想知道它是不是这样工作的: $result .= mysqli_query($query1); $result .= mysqli_query($query2); $result 会是查询 1 和 2
所以我有这样的挑战: body 背景上的图像,背景大小,覆盖以适合整个屏幕。在背景图像上是一些元素(建筑物)。所以我想将鼠标悬停在建筑物上,他们会更改颜色或添加阴影等。问题在于屏幕调整大小,当我调整屏
我是一名优秀的程序员,十分优秀!