css制作一个两边半圆了div
时间: 2023-11-13 15:02:31 浏览: 170
要使用 CSS 制作两边为半圆形的 `<div>`,你可以使用 `border-radius` 属性来设置圆角。
以下是一个制作两边半圆形的 `<div>` 的示例:
```html
<!DOCTYPE html>
<html>
<head>
<title>Half Circle Div Example</title>
<style>
.half-circle {
width: 200px;
height: 100px;
background-color: #f2f2f2;
border-top-left-radius: 100px;
border-top-right-radius: 100px;
}
</style>
</head>
<body>
<div class="half-circle"></div>
</body>
</html>
```
在上述代码中,我们创建了一个具有 `.half-circle` 类的 `<div>` 元素。我们设置了它的宽度为 200 像素,高度为 100 像素,并指定了一个背景颜色。
通过设置 `border-top-left-radius` 和 `border-top-right-radius` 属性为 100 像素,我们将上方的左右两个角设置为半圆形,从而实现了两边为半圆的效果。
你可以根据需要调整宽度、高度和圆角的尺寸来适应你的布局。
希望这个示例对你有所帮助!如果你有任何其他问题,请随时提问。
阅读全文