<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title></title>
<style>
.cen{
width: 200px;
heig: 200px
background-color:#d5093c;
/*阴影 水平方向的偏移 垂直方向的偏移 模糊度 阴影颜色*/
box-shadow:0px 0px 70px #D5093C;
}
.lef{
/*倒圆角指令*/
border-radius: 100px;
/*左上右下 走上左下*/
/*border-radiu:10px 60px;*/
/*border-radiu:10px 20px 30px 40px;*/
position: absolute;
top: 200px;
left: 200px;
}
.rig{
border-radius: 100px;
position: absolute;
top: 200px;
left: 341px;
}
.c{
/*旋转角度*/
transform: rotate(45deg);
position: absolute;
top: 269px;
left: 271px;
}
div.hover{
/*放大的倍数*/
transform: scale(1.3);
/*x:水平位移 y:垂直方向 负数:上*/
/*transform: translate(0px,-5px);*/
/*2D角度旋转 X Y*/
/*transform: skew(40deg 45deg);*/
}
</style>
</head>
<body>
<div class="cen lef"></div>
<div class="cen c"></div>
<div class="cen rig"></div>
</body>
</html>
老师为什么我的代码这个在浏览器中打开后没有显示
