CSS COURSE • LESSON
↔️ CSS Align
Master CSS and create modern responsive websites with EDUHUB CODE HUB.
CSS Alignment
Center Text
h1 {
text-align:center;
}
Center Element
.box {
margin:auto;
width:50%;
}