将div中的四个元素放在div的旁边,宽度不同

时间:2017-01-14 10:15:09

标签: html css flexbox

我试图在容器div中将四个元素放在彼此旁边;这些都是不同的宽度。

这是我期望的结果:

enter image description here

不幸的是,这就是目前的情况:

enter image description here

.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会为此工作吗?如果是这样,有人可以给我一个答案吗?

1 个答案:

答案 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>