Beste Leden,
Bestaat er in CSS3 een techniek om een dubbele border te creƫren?
Het gaat specifiek om 2 kleuren borders om een circle.
1.855 views
<style>
.borders {
position: relative;
border: 5px solid #f00;
width: 10.000em;
height: 10.000em;
border-radius: 5.000em;
}
.borders:before {
content: " ";
position: absolute;
z-index: -1;
top: 5px;
left: 5px;
right: 5px;
bottom: 5px;
border: 5px solid #ffea00;
border-radius: 5.000em;
}
</style>
<div id="" class="borders">
</div>