如何使用bootstrap设置上面带有文本的按钮

时间:2016-04-05 22:24:18

标签: css twitter-bootstrap-3

如何在一行中设置按钮,text3在text1和text2之间排成一行。在对窗口大小进行描述后,我想要text1,text 2 buttoon,单独的文本3和按钮。

我将非常感激地提供任何帮助。

我的代码:                                         你好          

      <div class="row center">
        <div class="col-sm-4">
            <strong>text1</strong>
            <p><strong>text2</strong></p>
            <button>download</button>
        </div>
        <div class="col-sm-3">
            <p><strong>text3</strong></p>
            <button>download</button>
        </div>
      </div>


    </div>
    <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.0/jquery.min.js"></script>
    <script src="js/bootstrap.min.js"></script>
</body>

和css:

a {
    text-decoration: none;
    outline: 0;
}

.orange {
    color: #FF6600;
}

button {
    color: white;
    padding: 10px 20px;
    border:0;
    background-color: #FF6600;
    cursor: pointer;
    font-weight: bold;
}

.center {
    margin: 0 auto;
}

Link to demo

0 个答案:

没有答案