У меня проблема с тем, чтобы мой нижний разделитель находился на той же высоте, что и другие в столбце.Я прокомментировал разделитель, который я пытаюсь получить на равной высоте.Я использую сетку MaterializeCSS, которую можно найти здесь: MaterializeCSS Grid .Я пробовал решение, опубликованное здесь , но безрезультатно.Любая помощь приветствуется!Ниже мой код:
.aboutMeRowWrapper {
margin-top: 5vh;
margin-bottom: 0!important;
}
.row {
display: flex;
}
.subSectionDivider {
height: 3px;
overflow: hidden;
background-color: #E76350;
width: 100px;
margin: 0 auto;
}
.sectionHeaderTitle:before {
background: black;
content: "";
display: block;
height: 3px;
position: absolute;
top: 50%;
width: 80%;
left: 10%;
}
.aboutMeWrapper {
padding-top: 2.5vh;
width: 100%;
background-color: #E5E2D2;
}
.sectionHeaderSubTitle {
font-family: 'Josefin Slab';
color: #E76360;
}
.sectionHeaderSpan {
background: #E5E2D2;
padding: 0 5px;
position: relative;
z-index: 1;
}
.sectionHeaderTitle {
font-family: 'Josefin Slab';
color: #E76350;
margin: 0;
position: relative;
text-align: center;
}
<link href="https://cdnjs.cloudflare.com/ajax/libs/materialize/1.0.0/css/materialize.min.css" rel="stylesheet"/>
<div class="row center-align aboutMeRowWrapper">
<div class="col s12 m12 l4">
<h4 class="sectionHeaderSubTitle">ABOUT ME</h4>
<div class="subSectionDivider"></div>
<div class="aboutMeParagraphWrapper">
<h6 class="aboutMeParagraph">
Woo, lets have some text here
</h6>
<div class="subSectionDivider"></div> <!-- This is the divider I want at an equal height -->
</div>
</div>
<div class="col s12 m12 l4">
<h4 class="sectionHeaderSubTitle">WHAT I DO</h4>
<div class="subSectionDivider"></div>
<div class="aboutMeParagraphWrapper">
<h6 class="aboutMeParagraph">
Text here, some more text, I want to have lots of text here, yay for text!
</h6>
<div class="subSectionDivider"></div> <!-- This is the divider I want at an equal height -->
</div>
</div>
<div class="col s12 m12 l4">
<h4 class="sectionHeaderSubTitle">WHAT I'VE DONE</h4>
<div class="subSectionDivider"></div>
<div class="aboutMeParagraphWrapper">
<h6 class="aboutMeParagraph">
Text here
</h6>
</div>
<div class="subSectionDivider"></div> <!-- This is the divider I want at an equal height -->
</div>
</div>