CSS - border-radius properties

0 votes
169 views
added Jul 13, 2021 in CSS by lcjr First Warrant Officer (11,530 points)
edited Jul 13, 2021 by lcjr
/*right top and bottom*/
.right-radius {
  border-radius: 0 6px 6px 0;
}

/*left top and bottom*/
.left-radius {
  border-radius: 6px 0 0 6px;
}

 

lazacode.org - Malaysia's programming knowledge sharing platform, where everyone can share their finding as reference to others.
...