欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

css 边框圆角

程序员文章站 2022-06-17 16:30:16
...

记录一下使用border-radius使边框变成圆角的方法

  • 构造圆形的方法
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Insert title here</title>
</head>
<style>
.div1{
    width:300px;
    height: 300px;
    border: 1px solid red;
    margin: 0px auto;
    border-radius:250px;
    text-align: center;
    line-height: 200px;
}
</style>
<body>
    <div class="div1">我是个圆</div>
</body>
</html>

思路:首先构造一个正方形,然后使用border-radius让四个角变成圆角,圆角具体的范围根据正方形的边长除以2就行了。

  • 构造椭圆的方法
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Insert title here</title>
</head>
<style>
.div2{
    width:300px;
    height: 200px;
    border: 1px solid red;
    margin: 0px auto;
    border-radius:150px/100px;
    text-align: center;
    line-height: 200px;
}

</style>
<body>
    <div class="div2">我是个椭圆</div>
</body>
</html>

思路:使用border-radius让四个角变成圆角,后面的横向和纵向的圆角范围使用 “/” 分割开来

  • 效果图
    css 边框圆角