html圆⾓边框
border radius什么意思<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport"content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible"content="ie=edge">
<title>圆⾓边框常⽤写法</title>
<style>
.yuanxing{
width: 200px;
height: 200px;
background-color: pink;
/* border-radius: 100px; */
/* 50% 就是宽度和⾼度的⼀半等价于 100px */
border-radius: 50%;
}
.juxing{
width: 300px;
height: 100px;
background-color: pink;
/* 圆⾓矩形设置为⾼度的⼀半 */
border-radius: 50px;
}
.radius{
width: 200px;
height: 200px;
/* border-radius: 10px 20px 30px 40px; */
/* border-radius: 10px 40px; */
border-top-left-radius: 20px;
background-color: pink;
}
</style>
</head>
<body>
1. 圆形的做法:
<div class="yuanxing"></div>
2. 圆⾓矩形的做法:
<div class="juxing"></div>
3. 可以设置不同的圆⾓:
<div class="radius"></div>
</body>
</html>

版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。