CSS COURSE • LESSON
⬛ CSS Borders
Master CSS and create modern responsive websites with EDUHUB CODE HUB.
CSS Borders
Borders are used to create lines around HTML elements.
Border Style
div {
border-style:solid;
}
Border Width
div {
border-width:5px;
}
Border Color
div {
border-color:red;
}
Rounded Borders
div {
border-radius:20px;
}