摘要:
要设置宽和高,需要设置display:block; 块级设置为内联:display:inline 阅读全文
摘要:
overflow-x:auto; overflow-y:auto; X轴和Y轴自适应; 阅读全文
摘要:
水平方向 垂直方向 模糊半径 模糊系数(大小)颜色 阅读全文
摘要:
先写 border-top:5px; border-right:10px; 后写: border-style:solid; border-color:red; 阅读全文
摘要:
1. 写在后面的样式优于前面,会把前面的覆盖掉! 2.三角形的造法:width:0; height:0;然后设置border-left border-right border-top border-bottom 3.id class 不能数字开头啊 4.a标签:链接|下载|锚点 href="文件下载 阅读全文
摘要:
width; height backgrond padding可以改变盒子的大小,一般设置了padding和border就要考虑减少盒子的width和height margin是外边距:也有上下左右,margin-top margin-bottom margin-left margin-right 阅读全文
摘要:
原生js添加和删除类: this.className +=" "; this.className = this.className.replace(" 原来的类","替换后的类"); 阅读全文