使用border-bottom-right-radius屬性來(lái)設(shè)置右下角的邊框。您可以嘗試運(yùn)行以下代碼來(lái)實(shí)現(xiàn)border-bottom-right-radius屬性?
示例
實(shí)時(shí)演示
<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>
登錄后復(fù)制
以上就是CSS border-bottom-right-radius 屬性的詳細(xì)內(nèi)容,更多請(qǐng)關(guān)注www.92cms.cn其它相關(guān)文章!