div-child Inhalt zentriert

rernanded

Erfahrenes Mitglied
Hi
habe das Problem das in meinem #mover-content der Inhalt linksbündig ist, will ihn aber zentriert haben und zwar immer und auf allen Geräten.
MONI
HTML:
<div id="mover">
<div id="mover-content">
+ + + Lesen Sie auch unsere <a href="...">News </a>! + + +
</div>
</div>

HTML:
#mover {
width: 100%;
background-color: #FFFFFF;
position: absolute;
top: 70%;
opacity: 0.70;
z-index: 100;
animation: moving 3s;
}
@keyframes moving {
100% {
transform: translate(0px, 0px);
}
0% {
transform: translate(0px, 600px);
}
}

#mover-content {
width: 90%;
margin-left: auto;
padding: 39px 39px 39px 39px;
font-size: 30px;
font-weight: 700;
color: #000;
z-index: 100;
}
 

Neue Beiträge

Zurück