border-bottom-right-radius 속성을 사용하여 오른쪽 하단에 테두리를 설정하세요. 다음 코드를 실행하여 border-bottom-right-radius 속성을 구현할 수 있습니다. −
Live Demo
<html> <head> <style> #rcorner { border-radius: 25px; border-bottom-right-radius: 45px; background: orange; padding: 20px; width: 200px; height: 150px; } </style> </head> <body> <p id="rcorner">Rounded corners!</p> </body> </html>
위 내용은 CSS 테두리-하단-오른쪽-반경의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!