写一个玫瑰花的HTML
时间: 2023-02-27 08:47:06 浏览: 37
下面是一个使用HTML编写的玫瑰花的代码:
```
<!DOCTYPE html>
<html>
<head>
<style>
.rose {
background-color: pink;
border-radius: 50% 50% 0 50%;
box-shadow: inset 0 0 10px #333;
height: 200px;
width: 200px;
position: relative;
margin: 50px auto;
}
.petal {
background-color: red;
border-radius: 50% 50% 50% 0;
height: 200px;
width: 200px;
position: absolute;
transform: rotate(45deg);
top: -50px;
left: -50px;
}
.stem {
background-color: green;
height: 400px;
width: 20px;
position: absolute;
bottom: -200px;
left: 90px;
border-radius: 10px 10px 10px 10px;
box-shadow: 2px 2px 2px #333;
}
</style>
</head>
<body>
<div class="rose">
<div class="petal"></div>
<div class="petal" style="transform: rotate(90deg);"></div>
<div class="petal" style="transform: rotate(180deg);"></div>
<div class="petal" style="transform: rotate(270deg);"></div>
<div class="petal" style="transform: rotate(360deg);"></div>
</div>
<div class="stem"></div>
</body>
</html>
```
在浏览器中打开这个HTML文件,您可以看到一朵玫瑰花。
阅读全文