- android - 多次调用 OnPrimaryClipChangedListener
- android - 无法更新 RecyclerView 中的 TextView 字段
- android.database.CursorIndexOutOfBoundsException : Index 0 requested, 光标大小为 0
- android - 使用 AppCompat 时,我们是否需要明确指定其 UI 组件(Spinner、EditText)颜色
我需要使 Hero 元素的高度相等,如下所示 https://codepen.io/hellouniverse/pen/KqvYoj .我是用 JavaScript 做的。但是,我感觉很恶心。我尝试使用 CSS flex 使高度相等。但是,只有当左右两侧的白框内的文本行数不同时,我才无法使用 CSS 设置高度。
当行号不同时,如何仅使用 CSS 使高度相等?
var $firstHeroTwinHeight;
var $secondHeroTwinHeight;
var $firstHeroTwinHeightContents;
var $secondHeroTwinHeightContents;
if ($(window).width() > 767) {
if ($('.section-hero').length > 0) {
$firstHeroTwinHeightContents = $('.section-hero .field-items .field-item:first-child .hero__contents');
$secondHeroTwinHeightContents = $('.section-hero .field-items .field-item:last-child .hero__contents');
$firstHeroTwinHeight = $firstHeroTwinHeightContents.outerHeight();
$secondHeroTwinHeight = $secondHeroTwinHeightContents.outerHeight();
if ($firstHeroTwinHeight > $secondHeroTwinHeight) {
$secondHeroTwinHeightContents.css('height', $firstHeroTwinHeight);
}
else {
$firstHeroTwinHeightContents.css('height', $secondHeroTwinHeight);
}
}
}
我有一个codepen https://codepen.io/hellouniverse/pen/KqvYoj我试图在没有 js 的情况下复制我所拥有的东西
最佳答案
最好的猜测:)
.field-items {
display: flex;
justify-content: space-around;
/* justify-content: space-between; ** pushes children to the sides
justify-content: flex-start; ** pushes children to the left
justify-content: flex-end; ** pushes children to the left */
padding: 1em;
border: thin solid lightgray;
}
<div class="container">
<div class="section-hero">
<div class="field-items">
<div class="field-item"><img src="http://placehold.it/200/00ff00"></div>
<div class="field-item"><img src="http://placehold.it/200/0000ff"></div>
</div>
</div>
</div>
关于javascript - 如何仅使用 CSS 使左右两侧的高度相等?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44735549/
我设法检查一个整数是否是从右到左排序的,但我如何检查从左到右的顺序?也许我应该做 2 个功能,一个从左到右检查,另一个从右到左检查?例如,我将 return 0; 替换为第二个函数,该函数检查它是否从
我想在两侧“剪切”我的页面,如下所示: http://i.stack.imgur.com/ngZrp.jpg 演示:https://jsfiddle.net/r2g0eyxf/3/ #left {
我很难在页面的两边都获得背景: 风格 .left { background: url(wax.png); width: 15%; position: absolute; lef
我需要逐步证明:7 + O(n) = O(n) 当两边都有大O的时候,我不知道该怎么做。 我想我理解大 O 符号的概念,但为什么两边都有大 O? 最佳答案 这种表示法的使用不符合大 O 表示法的正式定
我的目标是使 slider 宽度为 1280 像素并位于页面中央。我希望内容的边缘在两侧都有隐藏的溢出。例如,我希望内容的中心始终位于页面的中心,随着浏览器的大小调整,每一边都被切断,并且没有出现水平
我在做什么:在悬停按钮时,我添加了一个 5px 的底部边框。 JS fiddle : http://jsfiddle.net/mUCNB/ 问题: 问题是边框底部在左侧和右侧都延伸了 1px。 问题:
我是一名优秀的程序员,十分优秀!