CSS COURSE • LESSON
🖥️ CSS Display
Master CSS and create modern responsive websites with EDUHUB CODE HUB.
CSS Display Property
The display property controls how an element is displayed.
Block Element
div {
display:block;
}
Inline Element
span {
display:inline;
}
Hide Element
.hidden {
display:none;
}