垂直div在同一行的标题内

时间:2016-11-16 14:37:24

标签: css vertical-alignment html-heading heading

在我继续尝试之后,我做了一些调整,这将允许我将div与h3放在同一条线上,但它不是居中的。我只想让div在h3旁边的同一行上,使用垂直居中的h3文本(或div,只要文本出现就没关系。

我想position: absolute;是一个问题,但是如果我将其删除,那么数字周围的圆圈将不再是一个圆圈(我需要保持一个圆圈)  就像现在一样,如果标题文本在页面上有足够的空间(一行),圆圈将位于同一条线上,但它会垂直对齐顶部 enter image description here

或者底部,如果标题文字在两行上(由于太长) enter image description here

并且还可以在圆圈和文本之间水平添加10px。

我使用这个html:

 <h3> <div class="numberCircle">
<div class="content">24</div> </div>Smallest Personal Computer - Micro Mote </h3>

和这个css:

 .numberCircle {
    border-radius: 50%;
    -webkit-box-shadow: 3px 3px 4px rgba(0,0,0,0.2);
    -moz-box-shadow: 3px 3px 4px rgba(0,0,0,0.2);
    width: 50px;
    padding: 8px;
    font-size: 32px;
    line-height: 1em;
    border: 2px solid #666;
    position: relative;

}
.numberCircle:before{
  content:"";
  display:block;
  margin-top:100%;
}
.numberCircle .content {
    position: absolute;
    left: 0;
    top: 50%;
    width: 100%;
    text-align: center;
    transform: translateY(-50%);
}

代表h3:

 h3 {
  line-height: 1.17391em;
  color: #242d36;
  font-family: "PT Serif", Georgia, Times, serif;
  font-size: 23px;
  margin: 27px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  vertical-align:middle; 
}

2 个答案:

答案 0 :(得分:1)

您可以轻松地实现更改HTML并将flexbox移动到包装器。

&#13;
&#13;
 .numberCircle {
    border-radius: 50%;
    -webkit-box-shadow: 3px 3px 4px rgba(0,0,0,0.2);
    -moz-box-shadow: 3px 3px 4px rgba(0,0,0,0.2);
    width: 50px;
    padding: 8px;
    font-size: 32px;
    line-height: 1em;
    border: 2px solid #666;
    position: relative;

}
.numberCircle:before{
  content:"";
  display:block;
  margin-top:100%;
}
.numberCircle .content {
    position: absolute;
    left: 0;
    top: 50%;
    width: 100%;
    text-align: center;
    transform: translateY(-50%);
}
h3 {
  line-height: 1.17391em;
  color: #242d36;
  font-family: "PT Serif", Georgia, Times, serif;
  font-size: 23px;
  margin: 27px 0;
  vertical-align:middle; 
}
.wrapper{
  display: flex;
  align-items: center;
  justify-content: center;
}
&#13;
<div class="wrapper">
  <div class="numberCircle">
    <div class="content">24</div>
  </div>
  <h3>Smallest Personal Computer - Micro Mote </h3>
</div>
&#13;
&#13;
&#13;

答案 1 :(得分:1)

您也可以通过使用表格来轻松实现这一目标。

检查出来:

CSS:

.MyTable {
    width: 300px;
}

.MyTable tr td {
    vertical-align: middle;
}

.circle {
    background: red;
    width: 40px;
    height: 40px;
    text-align: center;
    position: relative;
    display: inline-block;
    border-radius: 100%;
    border: 1px solid black;
    padding: 10px;
    font-size: 32px;
}

.text {
    background: green;
    font-family: "PT Serif", Georgia, Times, serif;
    font-size: 23px;
}

HTML:

<table class="MyTable">
    <tr>
        <td>
            <div class="circle">
                24
            </div>
        </td>
        <td class="text">
            Smallest Personal Computer - Micro Mote
        </td>
    </tr>
</table>

有了这个,你就不必担心线条高度,以及所有那些&#34; itty gritty&#34;东西。您将能够更改字体大小,并使文本完全居中。