20

如何使按钮仅在 div 区域中浮动?

这是我的示例 CSS 和 HTML。

.test {
  width: 60%;
  display: inline;
  overflow: auto;
  white-space: nowrap;
  margin: 0px auto;
}
<div class='test'>
  <div style='float: left;'>
    <button>test</button>
  </div>
  <div style='float: right;'>
    <button>test</button>
  </div>
</div>

我希望它是这样的。

在此处输入图像描述

4

2 回答 2

28

将 display:inline 更改为 display:inline-block

.test {
  width:200px;
  display:inline-block;
  overflow: auto;
  white-space: nowrap;
  margin:0px auto;
  border:1px red solid;
}
于 2013-08-02T00:16:52.483 回答
17

你可以justify-content: space-between.test这样使用:

.test {
  display: flex;
  justify-content: space-between;
  width: 20rem;
  border: .1rem red solid;
}
<div class="test">
  <button>test</button>
  <button>test</button>
</div>


对于那些想要使用 Bootstrap 4 的人可以使用justify-content-between

div {
  width: 20rem;
  border: .1rem red solid;
}
<link href="https://stackpath.bootstrapcdn.com/bootstrap/4.4.1/css/bootstrap.min.css" rel="stylesheet" />
<div class="d-flex justify-content-between">
  <button>test</button>
  <button>test</button>
</div>

于 2020-03-06T07:29:17.930 回答