用于将图像对齐到输入框右侧的Html样式

时间:2013-08-23 03:32:13

标签: html html5

我正在使用Twitter bootstrap 3.0和razor视图。

如何将下方div中的图像与艺术家文本框的右侧对齐?

<div id="artist"class="form-group">
    @Html.LabelFor(m => m.Artists, new { @class = "col-lg-2 control-label" })
    <div class="container">
        @Html.TextBoxFor(m => m.Artists, new { placeholder = "Artist name",@class="form-control", id="artistinput"})  
        <img onclick="AddArtist()" id="plusartist" src="\Content\bootstrap\img\plus-button.png" class="img-thumbnail"/>
        @Html.ValidationMessageFor(m => m.Artists)
    </div>
</div>

0 个答案:

没有答案