coins arrondis CSS
/* Set rounded corners with border-radius property */
.class {
border-radius: 4px;
}
.circle {
border-radius: 50%;
}
k-vernooy
/* Set rounded corners with border-radius property */
.class {
border-radius: 4px;
}
.circle {
border-radius: 50%;
}
div {
outline: auto;
outline-style: round;
}
/*A box-shadow can be used for a similar effect*/
.your-box-or-button-class{
box-shadow: 0 0 3px #000000;
}
/* use box-shadow instead of outline radius */
box-sizing: border-box;
border-radius: 100%;
border: 3px solid #dadada;
box-shadow: 0 0 0 2px #fff inset;
-webkit-border-radius: 5px;
-moz-border-radius: 5px;
border-radius: 5px;