使用border-bottom-right-radius屬性來設置右下角的邊框。您可以嘗試運行以下代碼來實現border-bottom-right-radius屬性?
示例
實時演示
<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 border-bottom-right-radius 屬性的詳細內容,更多請關注www.92cms.cn其它相關文章!






