实例代码“Ctrl+/”提示“F11/ESC”全屏 返回 格式化 恢复 运行
x
 
1
<!DOCTYPE html>
2
<html>
3
<head>
4
<style> 
5
div
6
{
7
border:2px solid;
8
padding:10px;
9
background:#dddddd;
10
border-top-right-radius:2em;
11
-webkit-border-top-right-radius:2em; /* Safari */
12
}
13
</style>
14
</head>
15
<body>
16
17
<div>The border-top-right-radius property allows you to add a rounded border to the top-right corner.</div>
18
19
</body>
20
</html>
21