Añadir borde circular a un circulo
Publicado por David (5 intervenciones) el 17/07/2018 09:11:46
Me gustaria añadir un circulo de señalado a mi div circular, gracias por vuestra atencion un saludo


Valora esta pregunta


0
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<style>
.circulo {
position:relative;
width: 200px;
height: 200px;
border-radius: 50%;
border:5px solid orange;
background: #fff;
}
.circulo>div {
position:absolute;
width:180px;
height:180px;
border-radius: 50%;
background: orange;
margin:auto;
top: 0; left: 0; bottom: 0; right: 0;
}
</style>
</head>
<body>
<div class="circulo">
<div></div>
</div>
</body>
</html>