如何将此跨度垂直居中等于h1

时间:2017-07-13 18:00:08

标签: css alignment vertical-alignment

我到目前为止:

Jsfiddle

如何更改跨度的css,使其垂直居中于左侧的h1

希望它不复杂!

3 个答案:

答案 0 :(得分:1)

您最好的选择是使用Flex样式。

  1. 删除' .title i',' .title span',' .title h1'
  2. 的所有样式
  3. 编辑标题如下:
  4. Flex标题样式:

    .title {
        width: 100%;
        margin: 30px auto;
        text-align: center;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    

    证明 - 内容:中心; - 这会在中间重新对齐H1,短划线和跨度。

    align-items:center; - 这为您提供垂直对齐。

答案 1 :(得分:0)

h1span周围添加一个包装,然后将其设置为inline-flex。由于text-align带有标题,包装器将居中。

Fiddle



.title {
  width: 100%;
  margin: 30px auto;
  text-align: center;
}

.wrapper {
  display: inline-flex;
  justify-content: flex-start;
  align-items: center;
}

.title i {
  color: var(--grey-500);
}

.title span {
  font-size: var(--caption);
  line-height: 40px;
  color: #9E9E9E;
}

.title h1 {
  color: var(--black);
  font-size: var(--h1);
  text-align: center;
  font-weight: 500;
  margin: 65px auto;
}

<div class="title">
  <div class="wrapper">
    <h1>Title 1</h1> <i class="material-icons separateTitleType">remove</i> <span>Page</span>
  </div>
</div>
&#13;
&#13;
&#13;

答案 2 :(得分:0)

将此代码添加到.title

display: flex;
justify-content:center;
align-items:center;

此外,我从margin: 65px auto删除了h1,因此它不会占用flex-container中的所有位置。

/* Titles */
.title {
    width: 100%;
    margin: 30px auto;
    text-align: center;
    display: flex;
    justify-content:center;
    align-items:center;
}
.title i {
    color: var(--grey-500);
}
.title span {
    font-size: var(--caption);
    line-height: 40px;
    color: #9E9E9E;
}
.title h1 {
    color: var(--black);
    font-size: var(--h1);
    text-align: center;
    font-weight: 500;
}
:root {
    --black: #000000;
    --h1: 2.125em;
    --caption: 0.875em;
    --grey-500: #9E9E9E;
}
/* fallback */
@font-face {
  font-family: 'Material Icons';
  font-style: normal;
  font-weight: 400;
  src: local('Material Icons'), local('MaterialIcons-Regular'), url(https://fonts.gstatic.com/s/materialicons/v22/2fcrYFNaTjcS6g4U3t-Y5ZjZjT5FdEJ140U2DJYC3mY.woff2) format('woff2');
}

.material-icons {
  font-family: 'Material Icons';
  font-weight: normal;
  font-style: normal;
  font-size: 24px;
  line-height: 1;
  letter-spacing: normal;
  text-transform: none;
  display: inline-block;
  white-space: nowrap;
  word-wrap: normal;
  direction: ltr;
  -webkit-font-feature-settings: 'liga';
  -webkit-font-smoothing: antialiased;
}
body {
  font-family: 'Roboto', sans-serif;
  background-color: #fff;
}
<div class="title">
    <h1>Title 1</h1> <i class="material-icons separateTitleType">remove</i> <span>Page</span>
</div>