1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34
|
a {
border-bottom-color: initial;
border-left-color: initial;
border-right-color: initial;
border-top-color: initial;
}
b {
border-bottom-color: inherit;
border-left-color: inherit;
border-right-color: inherit;
border-top-color: inherit;
}
c {
border-bottom-color: unset;
border-left-color: unset;
border-right-color: unset;
border-top-color: unset;
}
d {
border-bottom-color: currentcolor;
border-left-color: currentcolor;
border-right-color: currentcolor;
border-top-color: currentcolor;
}
e {
border-bottom-color: rgb(128,128,0);
border-left-color: rgb(128,128,0);
border-right-color: rgb(128,128,0);
border-top-color: rgb(128,128,0);
}
|