0
is there any way to create my own border style
for example double border with different colours
4 Answers
+ 5
elaborate?
example of what kind of styling?
+ 3
https://www.w3schools.com/css/css_border.asp
some border styling option in css
+ 3
using outline
.borders {
border: 5px solid blue;
outline: 5px solid red;
}
or you can user :before and :after
hope that helps :)
0
for example like double border with different colours