vertically div inside heading 在同一行

vertically div inside heading on the same line

在我不断尝试之后,我做了一些调整,使 div 与 h3 位于同一行,但它没有居中。我只是想让 div 在同一行,在 h3 旁边,垂直居中的 h3 文本(或 div,只要文本出现就没关系。

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

或底部,如果标题文本分两行(由于太长)

并在圆和文本之间水平添加 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; 
}

你可以很容易地实现它,稍微改变你的 HTML 并将 flexbox 移动到包装器。

 .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;
}
<div class="wrapper">
  <div class="numberCircle">
    <div class="content">24</div>
  </div>
  <h3>Smallest Personal Computer - Micro Mote </h3>
</div>

您也可以使用 table.

来简化此操作

看看这个:

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>

有了这个,您就不必担心行高和所有那些 "itty gritty" 的东西了。您将能够更改您的字体大小,并且仍然使您的文本完美居中。