flexboxexperiment2

by Richard Hunter

HTML

<div class="u-valign-center">

    <div>
      <h3>Accessing your funds</h3>
      <p>
         Your funds will be lent to businesses who borrow over 6 months to 5 years, 
         but you have options to access your money at any stage. When you’re ready you have two options:       </p>
    </div>


</div>

CSS

.u-valign-center {
  
  width: 300px; 
  height: 500px;
  background: yellow;
  
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
}