gpt4 book ai didi

html - 如何在CSS中制作一个椭圆形?

转载 作者:技术小花猫 更新时间:2023-10-29 11:54:29 26 4
gpt4 key购买 nike

我想做一个像这样的椭圆:

enter image description here

但是当我使用这段代码时:

<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html"; charset="utf-8" />
<title>Oval</title>
<style type="text/css">
.oval {
width: 160px;
height: 80px;
background: #a84909;
border-radius: 40px;
}
</style>
</head>
<body>
<div class="oval"></div>
</body>
</html>

它给了我这个:

enter image description here

做一个圆圈可以,但做一个椭圆形不行。

最佳答案

您所要做的就是将 border-radius: 40px 更改为 border-radius: 50%

.oval {
width: 160px;
height: 80px;
background: #a84909;
border-radius: 50%;
}
<div class="oval"></div>

关于html - 如何在CSS中制作一个椭圆形?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26961221/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com