Thank You for the very quick reply.
I’ve tried your suggestion and it works great. If you don’t mind I have another problem: Vertically center a paragraph.
I’m working on the ‘Grid system page’ which I going to customise to be my ‘individual’ work page.
Using span may not be the correct way for this. I did add a ‘p.vertical’ css class, but it didn’t work when I added it to the code below.
<div class=”row show-grid”>
<div class=”col-lg-6″>
<span class=”lead”>
<p class=”lead pt-3″>Lead Pellentesque tempor tellus eget pellentesque. usce lacllentesque eget tempor tellus ellentesque pelleinia tempor malesuada. Pellentesque pellentesque eget tempor tellus ellentesqu. Lead Pellentesque tempor tellus eget pellentesque. usce lacllentesque eget tempor tellus ellentesque pelleinia tempor malesuada. Pellentesque pellentesque eget tempor tellus ellentesqu.</p></span></div>
<div class=”col-lg-6″><span class=”show-grid-block”>
</span></div>
</div>
My CSS class
p.vertical {
display: flex;
align-items: center;
justify-content: center;
height: 50px;
}