Centering FontAwesome icons vertically and horizontally

后端 未结 7 1708
Happy的楠姐
Happy的楠姐 2020-12-13 12:25

I\'m currently using FontAwesome, and am having a really hard time centering the icons both vertically and horizontally in their container. I have tried doing it via positi

相关标签:
7条回答
  • 2020-12-13 12:58

    So I finally got it(http://jsfiddle.net/ncapito/eYtU5/):

    .centerWrapper:before {
        content:'';
        height: 100%;
        display: inline-block;
        vertical-align: middle;
    }
    
    .center {
        display:inline-block;
        vertical-align: middle;
    }
    
    <div class='row'>
        <div class='login-icon'>
            <div class='centerWrapper'>
                <div class='center'> <i class='icon-user'></i></div>
           </div>
        </div>
        <input type="text" placeholder="Email" />
     </div>
    
    0 讨论(0)
  • 2020-12-13 12:58

    I just managed how to center icons and and making them a container instead of putting them into one.

    .fas {
        position: relative;
        color: #EEE;
        font-size: 16px;
    }
    .fas:before {
        position: absolute;
        left: calc(50% - .5em);
        top: calc(50% - .5em);
    }
    .fas.fa-icon {
        width: 60px;
        height: 60px;
        color: white;
        background-color: black;
    }
    
    0 讨论(0)
  • 2020-12-13 13:10

    This is all you need, no wrapper needed:

    .login-icon{
        display:inline-block;
        font-size: 40px;
        line-height: 50px;
        background-color:black;
        color:white;
        width: 50px;
        height: 50px;
        text-align: center;
        vertical-align: bottom;
    }
    

    http://jsfiddle.net/e2UPC/6/

    0 讨论(0)
  • 2020-12-13 13:13

    I have used transform to correct the offset. It works great with round icons like the life ring.

    <span class="fa fa-life-ring"></span>
    
    .fa {
        transform: translateY(-4%);
    }
    
    0 讨论(0)
  • 2020-12-13 13:18

    I just lowered the height to 28px on the .login-icon [class*='icon-'] Here's the fiddle: http://jsfiddle.net/mZHg7/

    .login-icon [class*='icon-']{
        height: 28px;
        width: 50px;
        display: inline-block;
        text-align: center;
        vertical-align: baseline;
    }
    
    0 讨论(0)
  • 2020-12-13 13:18

    If you are using twitter Bootstrap add the class text-center to your code.

    <div class='login-icon'><i class="icon-lock text-center"></i></div>
    
    0 讨论(0)
提交回复
热议问题