前端之家收集整理的这篇文章主要介绍了
html – Bootstrap Glyphicon作为按钮,
前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
假设我想使用glyphicon作为表单的提交按钮.我该怎么做呢?
详细说明,我不希望传统按钮的“可见”元素.只是一个glyphicon,因为它通常会出现在文本中.
我尝试过使用< button>和< input type ='button'>使用glyphicon类,(如人们所料),没有运气.
您可以使用.btn-link类将按钮
显示为文本
链接:
<form>
...
<button type="submit" class="btn btn-link">
<span class="glyphicon glyphicon-star"></span>
</button>
</form>
见demo fiddle
原文链接:https://www.f2er.com/html/226828.html