1.HTML代码:
<div class="circleOne"></div> <br/> <div class="circleTwo"></div>
2.CSS代码:
.circleOne{ /* 让其居中 */ margin:0 auto; 150px; height:150px; border:1px solid blue; border-radius:50%; } .circleTwo{ /* 让其居中 */ margin:0 auto; /* 改变其x轴的长 */ 50px; /* 改变其y轴的长 */ height:200px; border:1px solid blue; border-radius:50%; }
3.效果图:
4.2D旋转地址:http://www.w3school.com.cn/css3/css3_2dtransform.asp
.circleTwo{
/* 让其旋转 */
transform: rotate(30deg);
/* 让其居中 */
margin:0 auto;
/* 改变其x轴的长 */
50px;
/* 改变其y轴的长 */
height:200px;
border:1px solid blue;
border-radius:50%;
}