border-radius__边框圆角

本文详细介绍了CSS中border-radius属性的使用方法,包括不同参数组合的效果展示,如圆形和半圆形的实现技巧。此外还提供了代码示例帮助理解。

 1、四个参数:

  border-radius: 值1 值2 值3 值4;顺序:从左开始,顺时针顺

1 div{
2        width: 200px;
3        height: 100px;
4        background-color: blue;
5        margin: 50px;
6        border-radius: 10px 20px 30px 40px;          
8      }

 2、两个参数:

  border-radius: 值1 值2;  顺序:上左下右,上右下左

  

1 div{
2                width: 200px;
3                height: 100px;
4                background-color: blue;
5                margin: 50px;        
6            border-radius: 200px 200px 0 0; 
7       }
8                 

 

 3、半圆的形成

  border-radius: 200px 200px 0 0;向上的半圆 高度要减半

 

  

1 div{
2                width: 200px;
3                height: 100px;
4                background-color: blue;
5                margin: 50px;
6                border-radius: 200px 200px 0 0;
7             }

  

注:border-radius: 0 0 200px 200px ;向下的半圆 高度要减半

    

  

转载于:https://www.cnblogs.com/hlrblog/p/7867959.html

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值