将div元素水平居中对齐

时间:2018-11-10 18:15:49

标签: html css

我的问题是,我无法将span元素在div中或a元素内水平居中或居中对齐。

我尝试过但没有成功的事情:

.fejlec_kosar{text-align:center}
.fejlec_kosar a{display:block;text-align:center}

我在做什么错?我的代码如下:

<div class="col-md-2 col-xs-4 fejlec_kosar">
                <a href="<?php echo $host; ?>/kosar" title="Kosár">
                    <span class="header_kosar_text"><i class="fa fa-shopping-cart fejlec_kosar_ikon" aria-hidden="true"></i> Kosár</span>
                    <span id="header_kosar_text"></span>
                    <div class="clearfix"></div>
                </a>
            </div>


    .fejlec_kosar {
    margin-top: 18px;
    -webkit-transition: .3s linear;
    -o-transition: .3s linear;
    transition: .3s linear;
    border: none;
    border-radius: 25px;
    background-color: #fbab35;
    color: #173f62;
    padding: 10px 0;
}
.fejlec_kosar_ikon {
    color: #173f62;
    margin-right: 10px;
    font-size: 20px;
}
.header_kosar_text {
    color: #173f62;
    font-size: 16px;
    font-weight: 500;
    float: left;
    line-height: 30px;
}
#header_kosar_text {
    border-radius: 50%;
    background-color: #d5902b;
    color: #fff;
    font-size: 12px;
    font-weight: bold;
    display: block;
    float: left;
    height: 30px;
    width: 30px;
    text-align: center;
    line-height: 30px;
    margin-left: 10px;
}

2 个答案:

答案 0 :(得分:0)

当您在评论中阅读内容时,您可以使用flexbox实现此目的,

.fejlec_kosar {
    margin-top: 18px;
    -webkit-transition: .3s linear;
    -o-transition: .3s linear;
    transition: .3s linear;
    border: none;
    border-radius: 25px;
    background-color: #fbab35;
    color: #173f62;
    padding: 10px 0;
    display: flex; //ADDED
    justify-content: center; //ADDED
}

这应该可行,here,您有一篇文章可以帮助您了解flexbox的工作方式;

答案 1 :(得分:0)

您可以用其他方式创建相同的内容。尝试下面的代码段。

.try-btn{
  width: 40%;
   margin-top: 18px;
    -webkit-transition: .3s linear;
    -o-transition: .3s linear;
    transition: .3s linear;
    border: none;
    border-radius: 25px !important;
    background-color: #fbab35;
    color: #173f62;
    padding: 10px 0;
}
<link href="https://stackpath.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css" rel="stylesheet"/>
<link href="https://stackpath.bootstrapcdn.com/bootstrap/4.1.3/css/bootstrap.min.css" rel="stylesheet"/>

<div class="container">
   <div class="col-md-2 col-xs-4">               
    <a href="#" class="btn btn-lg btn-default try-btn"><span class="fa fa-shopping-cart"></span> Kosár</a>
   </div>
</div>