用HTML和CSS制作一个简单的爱心

效果图如下:

用HTML和CSS制作一个简单的爱心_第1张图片

index.html代码如下:




    
    
    
    爱心
    


    

 index.css代码如下:

.square,.disc1,.disc2{
	width: 100px;
	height: 100px;
	background-color: red;

}
.square{
	margin: 200px auto;

}
.disc1,.disc2{
	border-radius: 50px;

}
.disc1{
	position: absolute;
	left: -50px;
	top: 0;

}
.disc2{
	position: absolute;
	left: 0;
	top: -50px;
}
.square{
	position: relative;
	transform: rotate(45deg);
}

你可能感兴趣的:(前端,html5,css)