前几天 W3Cschool 小编教大家用CSS绘制基本图形。那么我们现在开启新的篇章,学习一些特殊图形的画法。那么这篇文章,小编教大家用CSS如何绘制一个半圆。
先来看看最终效果:
源码:
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>W3Cschool-编程狮</title>
<style type="text/css">
#semi-circle{
width: 200px;
height: 100px;
background-color: red;
border-radius:100px 100px 0 0;/* 左上、右上、右下、左下 */
}
</style>
</head>
<body>
<div id="semi-circle"></div>
</body>
</html>
上面的例子是绘制了一个上半圆,如果要绘制其他方向的半圆只需要修改border-radius
的代码即可。
- 上半圆:border-radius:100px 100px 0 0;
- 下半圆:border-radius:0 0 100px 100px;
- 左半圆:border-radius:100px 0 0 100px;
- 右半圆:border-radius:0 100px 100px 0;
以上就是CSS如何绘制半圆的全部内容,是不是超级简单呢。