输入带有引导程序图标

时间:2013-02-24 18:23:35

标签: html twitter-bootstrap styles icons

我正在尝试创建一个连接到mumble服务器的按钮。我目前正在为CSS使用bootstrap。

在我的快速模拟中,我之前做过这个带有耳机图标的按钮,但我无法理解,因为连接按钮需要标签而不是标签。

这是按钮的工作版本,我希望它的样式和mumble连接按钮的工作版本之一。

是否可以将图标与<input>一起使用?

样式按钮;

<button class="btn btn-large btn-primary" type="button"><i class="icon-headphones icon-white"></i> Connect to Mumble</button>

连接'按钮';

<input class="button" value="Connect" onclick="window.location.href='mumble://MUMBLE IP HERE/?version=1.2.3'" type="BUTTON" />

1 个答案:

答案 0 :(得分:10)

试试这个 -

       <div class="input-prepend">
        <span class="add-on"><i class="icon-user icon-black"></i></span>
<input type="text" name="login" class="//Some class" placeholder="Email address"/>
         </div>

如果要附加,只需将.input-prepend替换为.input-append

示例 - http://jsfiddle.net/PYwq5/

更新bootstrap V3 -

<强>追加 -

<div class="input-group">
    <input type="email" class="form-control" />
    <span class="input-group-addon">
        icon</span>
</div>

<强>前置 -

<div class="input-group">
    <span class="input-group-addon">
        icon</span>
    <input type="email" class="form-control" />
</div>

演示 - https://jsfiddle.net/DTcHh/9190/