Question

Select all classes that result in the top and left borders having the same colour. There may be more than one correct choice.

.one {
    border: 5px solid black;
}

.two {
    border-width: 5px;
    border-style: solid;
    border-color: black red;
}

.three {
    border: 5px solid;
    border-color: black red black;
}

.four {
    border-top: 5px solid;
    border-right: 5px solid;
    border-bottom: 5px solid;
    border-left: 5px solid;
    border-color: black red red black;
}