CSS Borders

Border Properties

CSS borders allow you to add borders around elements:

border-width

Example
div {
    border-width: 2px;
}

border-style

Example
div {
    border-style: solid;
    /* Other values: dashed, dotted, double, none */
}

border-color

Example
div {
    border-color: #4b3190;
}

Shorthand border

Example
div {
    border: 2px solid #4b3190;
}

Individual Sides

Example
div {
    border-top: 2px solid #4b3190;
    border-right: 1px dashed #fdbb30;
    border-bottom: 2px solid #4b3190;
    border-left: 1px dashed #fdbb30;
}

border-radius

Example
div {
    border: 2px solid #4b3190;
    border-radius: 10px;
}