I want to center this text vertically and horizontally inside a container, it is within a row and a column that is set to 12. But I can only get it to center horizontally and not vertically. I tried Flex but it moves all objects in the page to center, where I want just this one to center.
HTML:
<div class="container-fluid home">
<div class="row">
<div class="col-md-12" id="text">
<p>Hello World!</p>
</div>
</div>
CSS:
.home {
height: 100%;
background-image: url(images/home.png);
}
#text {
text-align:center;
}