我试图在容器div中将四个元素放在彼此旁边;这些都是不同的宽度。
这是我期望的结果:
不幸的是,这就是目前的情况:
.container {
width: 100%;
background: blue;
padding: 10px;
}
p {
margin: 0px;
color: #fff;
font-size: 30px;
width: 11%;
float: left;
}
button {
float: right;
}
<div class="container">
<p>Title</p>
<form>
<input type="text" class="input">
</form>
<button>Apple</button>
<button>Orange</button>
<div style="clear: both;"></div>
</div>
JsFiddle:https://jsfiddle.net/uLL708jg/
Flex
会为此工作吗?如果是这样,有人可以给我一个答案吗?
答案 0 :(得分:2)
是的,flexbox
可以解决这个问题。这只是一个基本设置。在.container
上,输入display: flex;
并删除所有浮点数。然后将按钮包裹在div(.right
此处)中,并将其margin-left: auto;
设置为将其停放在屏幕右侧。
修改强>
justify-content: space-between;
将对齐这三个项目,以便项目之间有空格,因此搜索将位于div .container
的中间位置。不再需要margin-left: auto;
,但需要围绕它的div包装器。阅读有关flexbox及其使用方法的更多信息at MDN。
.container {
display: flex;
width: 100%;
background: blue;
padding: 10px;
flex-flow: row wrap;
align-items: center;
justify-content: space-between;
}
p {
margin: 0px;
color: #fff;
font-size: 30px;
width: 11%;
}
<div class="container">
<p>Title</p>
<form>
<input type="text" class="input">
</form>
<div class="right">
<button>Apple</button>
<button>Orange</button>
</div>
</div>