I want to center a block of text in the middle of a screen. I want to use bootstrap to center the text in the middle of screen to save some time.
I did it this way, but the block still in the middle horizontally, and not vertically and horizontally.
CSS:
.block {
    top: 50%;
    left: 50%; 
}
HTML:
<div class="row">
   <div class="col-xs-4">Text</div>
</div>
 
     
     
     
     
    