I am facing an issue with centering a nested div containing a UL within another div. Despite trying various methods to achieve vertical alignment, I am unable to get it to work properly. PARENT
.splash {
background: url(../img/splash.jpg);
background-repeat: no-repeat;
background-size: cover;
background-position: center;
position: relative;
text-align: center;
min-width: 30%;
min-height: 50%;
width: 100%;
height: 100%;
display: flex;
align-items: center;
justify-content: center;
}
CHILD
.media {
display: block;
position: absolute;
padding-left: 3px;
left: 0;
}