Hello I'm trying to set up three columns and vertically and horizontally center the span in each of the columns. I've tried using flexbox and grid but it's not working out for me
https://i.stack.imgur.com/FjL4L.jpg
<div class="row">
<div class="column">
<span class="center">test</span>
</div>
<div class="column">
<span class="center">test</span>
</div>
<div class="column ">
<span class="center">test</span>
</div>
</div>
.row{
width:100%;
height:100%;
}
.column{
float:left;
width:33.33%;
height: 100%;
text-align: center;
}