Zaokrąglone zakątki 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%;
}
/* top-left | top-right | bottom-right | bottom-left */
border-radius: 1px 0 3px 4px;
-webkit-border-radius: 5px;
-moz-border-radius: 5px;
border-radius: 5px;