博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
css3 border-radius制作半圆---上下左右半圆
阅读量:6190 次
发布时间:2019-06-21

本文共 779 字,大约阅读时间需要 2 分钟。

左右半圆

<!doctype html>

<html>
<head>
<meta charset="utf-8">
<title>border-radius</title>
<style type="text/css">
div.circle{
    height:100px;
    width:50px;
    background:#9da;
    border-radius:0 50px 50px 0 ;右半圆

   /* border-radius:50px 0 0 50px;左半圆*/

    }

 

div.circle{

    width:100px;

    height:50px;
    background:#9da;
    border-radius:50px 50px 0 0 ;/*上半圆

   /* border-radius:50px 0 0 50px;*//*下半圆*/

    }
</style>
</head>
<body>
<div class="circle"></div>
</body>
</html>

上下半圆

1、上下半圆宽度是高度的两倍

2、上半圆border-radius:右上等于高度值下左等于0       border-radius:50px 50px 0 0 ;/

3、下半圆border-radius:左上等于高度值右下等于0       border-radius:50px 0 0 50px;

 

左右半圆

1、左右半圆宽度是高度的一半

 

2、左半圆border-radius:左上等于宽度值等于0             border-radius:50px 0 0 50px;

3、右半圆border-radius:右下等于宽度值左上等于0        border-radius:0 50px 50px 0 ;

转载于:https://www.cnblogs.com/zhp404/articles/4310605.html

你可能感兴趣的文章
matlab练习程序(生成加密p文件)
查看>>
C 阶段性总结
查看>>
ASCII、Unicode、GBK和UTF-8字符编码的区别联系[转]
查看>>
PHP语言 -- 封装连接数据库类
查看>>
跟着锅子一步步学习32位汇编(1)---第一个汇编程序
查看>>
iOS编程高性能之路-基于pthread的线程池
查看>>
《程序是怎样跑起来的》第十一章读后感
查看>>
C语言的隐式类型转换
查看>>
Linux内核学习笔记(2)-- 父进程和子进程及它们的访问方法
查看>>
阅读笔记一
查看>>
sql server 规则
查看>>
文件分割和合并
查看>>
正则表达式
查看>>
Ioc思想
查看>>
Spring Session
查看>>
C# Settings使用小结
查看>>
坑爹的InetAddress getLocalHost函数
查看>>
JS_imgload
查看>>
thinkphp的项目分组
查看>>
编写校验规则文件
查看>>