经过测试,background-origin只对背景图片起作用,background-origin属性的定义也明确说了是设置元素背景图片的原始起始位置,而背景颜色是始终从边框开始填充的。但是background-clip既可以裁剪背景图片也可以裁剪背景颜色。各位都可以试试,若有错欢迎大家指出。
2017-11-10
我只想说热评2 @Ace_____这位同学理解有毛病,这个box如果不设置内边距,content-box就起不了作用?哪有不起作用,没有padding了,就剩下border和content分享图片区域了,border占据图片空间不变,content-box裁出来肯定比没有padding的时候大呀,难道要跟有padding的时候裁出来一样大才叫起作用?纳尼?
2017-11-10
.columns {
padding: 5px;
border: 1px solid green;
width: 920px;
height:270px;
margin: 20px auto;
column-width:290px;
column-count:3;
}
列间距20px,加上内边距再加上列宽是整个div的宽度
高度调一下就能和图上效果一样
padding: 5px;
border: 1px solid green;
width: 920px;
height:270px;
margin: 20px auto;
column-width:290px;
column-count:3;
}
列间距20px,加上内边距再加上列宽是整个div的宽度
高度调一下就能和图上效果一样
2017-11-09
多行显示的方法:overflow: hidden;
text-overflow: ellipsis;
display: -webkit-box;
-webkit-line-clamp: 2;
-webkit-box-orient: vertical;
text-overflow: ellipsis;
display: -webkit-box;
-webkit-line-clamp: 2;
-webkit-box-orient: vertical;
2017-11-01
rel:relationship的英文缩写·
REL属性用于定义链接的文件和HTML文档之间的关系。StyleSheet,的意思就是样式调用,REL=StyleSheet指定一个固定或首选的样式而REL="Alternate StyleSheet"定义一个交互样式。
REL属性用于定义链接的文件和HTML文档之间的关系。StyleSheet,的意思就是样式调用,REL=StyleSheet指定一个固定或首选的样式而REL="Alternate StyleSheet"定义一个交互样式。
2017-10-31
好吧,大家都来总结,我就照打一遍吧,加深一下印象。哈哈
CSS3总结三种动画。transform变形动画/transition缓动动画/animation逐帧动画;
transform:rotate旋转/skew斜切扭曲/scale缩放大小/translate平移/matrix矩阵变形;
transition:property duration timing-function delay;
animation:keyframes name duration timing-function delay interation-count direction play-state fill-mode
CSS3总结三种动画。transform变形动画/transition缓动动画/animation逐帧动画;
transform:rotate旋转/skew斜切扭曲/scale缩放大小/translate平移/matrix矩阵变形;
transition:property duration timing-function delay;
animation:keyframes name duration timing-function delay interation-count direction play-state fill-mode
2017-10-27
我用火狐不支持。我加了前缀啊,@-moz-keyframes donghua{
0%{margin-left:100px;background:green;}
40%{margin-left:150px;background:orange;}
60%{margin-left:75px;background:blue;}
100%{margin-left:100px;background:red;}
}
div:hover{-moz-animation:donghua 5s ease 0.1s}
0%{margin-left:100px;background:green;}
40%{margin-left:150px;background:orange;}
60%{margin-left:75px;background:blue;}
100%{margin-left:100px;background:red;}
}
div:hover{-moz-animation:donghua 5s ease 0.1s}
2017-10-27