Skip to content

Commit

Permalink
add css3 动画
Browse files Browse the repository at this point in the history
  • Loading branch information
smyhvae committed Feb 9, 2018
1 parent 258844f commit 76bc3d6
Show file tree
Hide file tree
Showing 6 changed files with 2,889 additions and 22 deletions.
2 changes: 1 addition & 1 deletion 02-CSS/02-CSS属性:背景属性.md
Original file line number Diff line number Diff line change
Expand Up @@ -277,7 +277,7 @@ PS:padding的区域也是有背景图的。

![](http://img.smyhvae.com/20170813_1158.gif)

### background综合属性
### background 综合属性

background属性和border一样,是一个综合属性,可以将多个属性写在一起。(在[盒子模型](http://www.cnblogs.com/smyhvae/p/7256371.html)这篇文章中专门讲到boder)

Expand Down
18 changes: 8 additions & 10 deletions 02-CSS/08-CSS属性:定位属性.md
Original file line number Diff line number Diff line change
Expand Up @@ -336,14 +336,14 @@ p将无视父亲的padding,在border内侧为参考点,进行定位:
可如果盒子是绝对定位的,此时已经脱标了,如果还想让其居中(位于父亲的正中间),可以这样做:

```
<div>
width: 600px;
height: 60px;
position: absolute; 绝对定位的盒子
left: 50%; 首先,让左边线居中
top: 0;
margin-left: -300px; 然后,向左移动宽度(600px)的一半
</div>
div {
width: 600px;
height: 60px;
position: absolute; 绝对定位的盒子
left: 50%; 首先,让左边线居中
top: 0;
margin-left: -300px; 然后,向左移动宽度(600px)的一半
}
```

如上方代码所示,我们先让这个宽度为600px的盒子,左边线居中,然后向左移动宽度(600px)的一半,就达到效果了。
Expand Down Expand Up @@ -519,8 +519,6 @@ z-index属性的应用还是很广泛的。当好几个已定位的标签出现
(2)用`z-index`来控制层级数。




## 我的公众号

想学习<font color=#0000ff>**代码之外的软技能**</font>?不妨关注我的微信公众号:**生命团队**(id:`vitateam`)。
Expand Down
Loading

0 comments on commit 76bc3d6

Please sign in to comment.