<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>圣诞树</title>
<style>
body {
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
background-color: #002b36;
margin: 0;
font-family: Arial, sans-serif;
}
.tree {
position: relative;
width: 0;
margin: auto;
}
.tree .star {
position: absolute;
top: -10px;
left: 50%;
transform: translateX(-50%);
color: gold;
font-size: 20px;
}
.tree .layer {
position: relative;
width: 0;
margin: 0 auto;
border-style: solid;
border-color: transparent transparent green transparent;
}
.tree .layer:nth-child(1) {
border-width: 0 50px 50px 50px;
}
.tree .layer:nth-child(2) {
border-width: 0 70px 60px 70px;
top: -40px;
}
.tree .layer:nth-child(3) {
border-width: 0 90px 70px 90px;
top: -80px;
}
.tree .layer:nth-child(4) {
border-width: 0 110px 80px 110px;
top: -120px;
}
.tree .layer:nth-child(5) {
border-width: 0 130px 90px 130px;
top: -160px;
}
.tree .trunk {
position: relative;
width: 30px;
height: 60px;
background-color: brown;
margin: 0 auto;
top: -200px; /* Adjust based on the height of your tree layers */
}
</style>
</head>
<body>
<div class="tree">
<div class="star">★</div>
<div class="layer"></div>
<div class="layer"></div>
<div class="layer"></div>
<div class="layer"></div>
<div class="layer"></div>
<div class="trunk"></div>
</div>
</body>
</html>
没有合适的资源?快使用搜索试试~ 我知道了~
通过html实现一个简单的圣诞树网页代码.rar
共1个文件
html:1个
需积分: 1 0 下载量 130 浏览量
2024-10-31
14:53:20
上传
评论
收藏 734B RAR 举报
温馨提示
压缩包文件是一个简单的HTML网页代码,它会在浏览器中显示一棵圣诞树。为了增加一些视觉效果,我还加入了一些基本的CSS样式。 在这个HTML文件中,<div class="tree"> 是圣诞树的容器。<div class="star"> 是树顶的星星。<div class="layer"> 元素通过CSS边框技巧创建了树的每一层。最后,<div class="trunk"> 是树干。 请注意,CSS中的 top 属性用于定位每一层和树干的位置。你可能需要根据你的具体需求调整这些值。此外,这个示例使用了简单的颜色和形状,你可以根据需要进一步自定义样式。
资源推荐
资源详情
资源评论
收起资源包目录
通过html实现一个简单的圣诞树网页代码.rar (1个子文件)
圣诞树.html 2KB
共 1 条
- 1
资源评论
图表制作解说(目标1000个图表)
- 粉丝: 893
- 资源: 280
上传资源 快速赚钱
- 我的内容管理 展开
- 我的资源 快来上传第一个资源
- 我的收益 登录查看自己的收益
- 我的积分 登录查看自己的积分
- 我的C币 登录后查看C币余额
- 我的收藏
- 我的下载
- 下载帮助
最新资源
资源上传下载、课程学习等过程中有任何疑问或建议,欢迎提出宝贵意见哦~我们会及时处理!
点击此处反馈
安全验证
文档复制为VIP权益,开通VIP直接复制
信息提交成功