Identify the CSS property defining bottom-left corner shape of the border? * 1 point border-radius border-corner-radius border-bottom-left-radius border-left-radius code example
Example: css rounded corners
/* Set rounded corners with border-radius property */
.class {
border-radius: 4px;
}
.circle {
border-radius: 50%;
}