border-bottom-left-radius 속성을 사용하여 왼쪽 하단 모서리의 테두리를 설정합니다. 다음 코드를 실행하여 border-bottom-left-radius 속성을 구현할 수 있습니다 -
예시
<html> <head> <style> #rcorner { border-radius: 25px; border-bottom-left-radius: 45px; background: blue; padding: 20px; width: 200px; height: 150px; } </style> </head> <body> <p id="rcorner">Rounded corners!</p> </body> </html>