写一个html爱心代码
时间: 2023-10-26 21:29:37 浏览: 66
基于HTML实现的爱心代码-添加了文字.zip
<!DOCTYPE html>
<html>
<head>
<title>爱心</title>
<style type="text/css">
.heart {
position: relative;
width: 50px;
height: 50px;
transform: rotate(45deg);
background-color: #f00;
margin: 50px auto;
}
.heart:before,
.heart:after {
content: "";
position: absolute;
background-color: inherit;
}
.heart:before {
top: -25px;
left: 0;
width: 25px;
height: 25px;
border-radius: 25px 0 0 0;
}
.heart:after {
top: 0;
left: -25px;
width: 25px;
height: 25px;
border-radius: 0 25px 0 0;
}
</style>
</head>
<body>
<div class="heart"></div>
</body>
</html>
阅读全文