<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<style>
.box{
width: 200px;
height: 200px;
background-color: #e67e22;
/* border-radius: 10px; 一个值,上下左右*/
/* border-radius: 10px 20px;两个值,左上和右下,右上和左下 */
/* border-radius: 10px 20px 30px;三个值,左上,右上和左下,右下 */
/* border-radius: 10px 20px 30px 40px;四个值,顺时针,左上,右上,右下,左下 */
/* border-top-left-radius: 100px;左上 */
/* border-top-right-radius: 100px;右上 */
/* border-bottom-left-radius: 100px;左下 */
/* border-bottom-right-radius: 100px;右下 */
/* border-radius: 50px/100px;横轴和纵轴 */
/* border-radius: 50% 50% 0 0/100% 100% 0 0;自适应的半圆 */
}
</style>
</head>
<body>
<div class="box"></div>
</body>
</html>