在input内添加小图标或文字(元/月)等
Posted firstcsharp
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了在input内添加小图标或文字(元/月)等相关的知识,希望对你有一定的参考价值。
文字:
<td class="formValue">
<div class="input-group">
<input id="AccountBillPrice" type="number" class="form-control" /><span class="input-group-addon">元/月</span>
</div>
</td>
图标:
<div class="input-group">
<input id="AccountBillPrice" type="number" class="form-control" /><span class="input-group-addon"><i class="fa fa-pencil"></i></span>
</div>
或者使用自己的图标:
<input class=‘phone-input‘ type="text" id="phone"/> .phone-input padding-right:20px; background:url("resource/***.gif") no-repeat scroll right center transparent;
以上是关于在input内添加小图标或文字(元/月)等的主要内容,如果未能解决你的问题,请参考以下文章
winform的tabpage控件如何在顶部的标签上设置文字颜色、添加小图标?