前端之家收集整理的这篇文章主要介绍了
css – 在BS3中创建一个圆形按钮,
前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我想在BS3(一个完美的圆形)中创建一个圆形按钮,中心有一个fontawesome(4.0)图标。
到目前为止,我有以下代码:
HTML:
<a href="#" class="btn btn-default"><i class="fa fa-user"></i></a>
什么是CSS标记是使这个按钮是一个完美的圆?
你可以做一些事情,比如
添加一个类来
添加边框半径
HTML:
<a href="#" class="btn btn-default btn-circle"><i class="fa fa-user"></i></a>
CSS:
.btn-circle {
width: 30px;
height: 30px;
text-align: center;
padding: 6px 0;
font-size: 12px;
line-height: 1.42;
border-radius: 15px;
}
如果你想改变维度,你需要相应地改变字体大小或填充
原文链接:https://www.f2er.com/css/221038.html