问题描述
我在div中有三个浮动按钮时遇到问题。其中一个按钮比其他按钮具有更多的内容,因此它更高。
I have a problem where I have three floating buttons in a div. one of the buttons has more content that the others, so it's taller.
我希望能够使所有按钮的高度与最高按钮的高度相同。我试过 height:100%;
,但这没用。
I want to be able to make all buttons the same height as the tallest button. I tried height: 100%;
but that didn't work.
<!DOCTYPE html>
<html>
<head>
<title></title>
<meta charset="utf-8" />
<style type="text/css">
.container {
width: 320px;
}
.container button {
float: left;
background: #FFFFFF;
border: 1px solid #CCCCCC;
width: 33.33%;
}
</style>
</head>
<body>
<div class="container">
<button>
<span class="big-text">Okay</span>
<span class="little-text">123</span>
</button>
<button>
<span class="big-text">Another Option</span>
<span class="little-text">456</span>
</button>
<button>
<span class="big-text">Nah!</span>
<span class="little-text">789</span>
</button>
</div>
</body>
</html>
推荐答案
只需将 display:flex
添加到您的容器类中,如下所示:
Just add display:flex
to your container class like this:
.container {
width: 320px;
display:flex;
}
jsFiddle:
jsFiddle: https://jsfiddle.net/AndrewL32/xpdxyaz6/2/
注意:
Flex
属性仅兼容来自:
Google Chrome v21.0以上版本(-webkit-)
Google Chrome v21.0 above (-webkit-)
Internet Explorer v10.0以上(-ms-)
Internet Explorer v10.0 above (-ms-)
Mozilla Firefox v18.0以上(-moz- )
Mozilla Firefox v18.0 above (-moz-)
Safari v6.1以上版本(-webkit-)
Safari v6.1 above (-webkit-)
Opera v12.10以上
这篇关于CSS-使所有元素的高度与最高元素的高度相同的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!