引导垂直中心标题div响应

时间:2018-05-07 08:27:32

标签: html css bootstrap-4 centering

我试图在div中垂直居中h5,但我想反应性地做,所以那些将父级的高度设置为一定像素的解决方案对我来说不是解决方案。 / p>

带有id" channelName"的h5是我试图垂直居中在父div。

<div class="col-10 text-left channelTab"><h5 id="channelName">Name</h5></div>

&#13;
&#13;
#greyBox {
  background-color: grey;
}

#title {
  color: white;
}

.logo {
  max-height: 50px;
  max-width: 50px;
  border-radius: 50%;
  border: 3px solid white;
}

#channelName {
  vertical-align: middle;
  display: inline-block;
}

#channelRow {
  background-color: red;
}
&#13;
<div class="container-fluid">
  <div class="row">
    <div class="col-4"></div>
    <div id="greyBox" class="col-4 text-center">
      <div class="row">
        <div class="col-12 text-center">
          <h1 id="title">TITLE</h1>
          <div class="row" id="channelRow">
            <div class="col-2">
              <img src="image.png" class="logo"></div>
            <div class="col-10 text-left channelTab">
              <h5 id="channelName">Name</h5>
            </div>
          </div>

          <div class="col-6">

          </div>
        </div>
      </div>
    </div>
  </div>
</div>
&#13;
&#13;
&#13;

如果可以通过对我的代码进行更多更改来更轻松地完成此操作,那么任何此类提示都会受到欢迎,因为我对此非常陌生并仍在学习。

1 个答案:

答案 0 :(得分:1)

将此课程添加到h5 d-flex align-items-center的父级并移除h5

的下边距

此类(d-flex)将显示h5 flex 的父级,align-items-center将垂直居中。

#greyBox {
  background-color: grey;
}

#title {
  color: white;
}

.logo {
  max-height: 50px;
  max-width: 50px;
  border-radius: 50%;
  border: 3px solid white;
}

#channelName {
 margin:0;
}

#channelRow {
  background-color: red;
}
<link href="https://stackpath.bootstrapcdn.com/bootstrap/4.1.1/css/bootstrap.min.css" rel="stylesheet"/>
<div class="container-fluid">
  <div class="row">
    <div class="col-4"></div>
    <div id="greyBox" class="col-4 text-center">
      <div class="row">
        <div class="col-12 text-center">
          <h1 id="title">TITLE</h1>
          <div class="row" id="channelRow">
            <div class="col-2">
              <img src="image.png" class="logo"></div>
            <div class="col-10 text-left d-flex align-items-center channelTab">
              <h5 id="channelName">Name</h5>
            </div>
          </div>

          <div class="col-6">

          </div>
        </div>
      </div>
    </div>
  </div>
</div>