Sử dụng thuộc tính border-bottom-right-radius để thiết lập đường viền của góc dưới cùng bên phải. Bạn có thể thử chạy mã sau để triển khai thuộc tính border-bottom-right-radius -
Ví dụ
<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>