已采纳回答 / hello_1128
因为hover里面只设置了width的值,所以默认就改变width,不需要你特定指定。但是如果你在hover里面同样改变了height 就会发现如果你不指定transtion-property属性值为width的话。就会宽高都一起变化。但是指定了transtion-property属性值为width 那么只会动态的改变宽。
大家其实可以在写代码前看看效果怎样的,win下快捷键按住Ctrl+shift+enter就可以,然后写完再看效果,这样或许更能理解元素干什么的
2016-12-20
background:url(http://static.mukewang.com/static/img/logo_index.png) no-repeat left top/75% 50%,
url(http://static.mukewang.com/static/img/logo_index.png) no-repeat right bottom/50% 40%;
url(http://static.mukewang.com/static/img/logo_index.png) no-repeat right bottom/50% 40%;
2016-12-20
已采纳回答 / 慕少1338687
<!DOCTYPE html><html><head> <meta charset="UTF-8"> <title>旋转的小球</title> <style type="text/css"> .box { margin:100px auto; box-sizing: border-box; background:red; height: 60px; width: 60p...
2016-12-19