使用Bootstrap在按钮附近浮动一段文本

时间:2016-06-19 16:26:19

标签: twitter-bootstrap

如何使用Bootstrap在按钮附近放置一个浮动文本块?

这就是我想要的:
enter image description here

这里的代码实际上是:

<div class="row">
    <div class="col-md-10 col-md-offset-1">
        <button type="submit" class="btn btn-primary btn-md">Submit</button>
        <div class="help-block">Datas not saved.</div>
    </div>
</div>

我该怎么做呢?

感谢。

1 个答案:

答案 0 :(得分:1)

您可以使用此CSS(默认情况下help-block是块级元素):

.help-block {
  display: inline-block;
  margin-left: 10px;
}