title 和 herf 可以对一些固定的,比较具体的元素进行样式的选择----用于css
在一个元素后面才显示定义样式,例如h2+p{}这样就是定义的样式是在h2后面上的p标签显示,但是前提是两个是在同一个父类下面
transform:translate(100px,100px);移动坐标-X-Y移动位置
-webkit/ms/o/moz-transform:rotate(180deg);旋转角度------safari chorme/IE/opera/firefox用于各种浏览器格式
transform:scale(0.8,0.5)---缩放
transform:skew(10deg,10deg);倾斜度数
.div3{
width:300px;
height:500px;
background-color:pink;
transition:width 2s,height 2s,transform 2s;
}
.div3:hover{
width:200px;
height:200px;
transform:rotate(360deg);
}-----动画旋转效果
div里面用float进行平铺,最后一个div块的时候最好加个背景颜色,因为这样好检查有没有排列好,最后再把它去掉也可以。
dt dd用display:inline变成一条直线上
index.html另存为模板后缀名改为dwt
加油~坚持
时间: 2024-10-11 04:26:47