如何对中跨度

时间:2015-10-30 16:01:44

标签: html css center

如何将下载按钮居中?我测试了很多次,但代码错了。



.col {
  width: 100%;
  height: auto;
  float: left;
}
.download {
  width: auto;
  font-weight: 600;
  font-size: 14px;
  color: #000;
  border: 2px solid #000;
  padding: 17px 37px;
  margin-top: 30px;
  float: left;
}

<div class="col">
  <span class="download">Download</span>
</div>
&#13;
&#13;
&#13;

2 个答案:

答案 0 :(得分:3)

只需将text-align: center;添加到.col,然后将float:left替换为按钮元素中的display:inline-block;即可。 jsfiddle

答案 1 :(得分:2)

  1. float:left;移除.download(因为它会强制元素向左浮动)。

  2. 提供display:inline-block;(它的行为类似于inline元素,这意味着您可以通过向其父级提供text-align:center;来居中。)

  3. JSFiddle

    .col {
        width: 100%;
        height: auto;
        float: left;
        text-align: center;
    }
    .download {
        font-weight: 600;
        font-size: 14px;
        color: #000;
        border: 2px solid #000;
        padding: 17px 37px;
        margin-top: 30px;
        display: inline-block;
    }