美文网首页
bootstrap使用

bootstrap使用

作者: 树蜂 | 来源:发表于2019-02-16 11:47 被阅读0次

    1、图标与文字垂直居中对齐

    1、图标与文字垂直居中对齐

    参考 http://jsfiddle.net/Lv8px7hd/
    html

    <li>不居中<span class="icon"></span></li>
    <li><span class="aligned">居中</span><span class="icon aligned"></span></li>
    
    

    css

    .icon {
        display: inline-block;
        width: 20px;
        height: 20px;
        background-color: #aaa;
        border: solid 1px #000;
    }
    .aligned {
        vertical-align: middle;
    }
    

    相关文章

      网友评论

          本文标题:bootstrap使用

          本文链接:https://www.haomeiwen.com/subject/atybeqtx.html