1.css3里面的nth-child()选择器
:nth-child(n)
选择器匹配父元素中的第 n 个子元素,元素类型没有限制。
n 可以是一个数字,一个关键字,或者一个公式。
2.background-image
默认地,背景图像位于元素的左上角,并在水平和垂直方向上重复。
这样就出现了没有自适应的问题。
解决办法:加上background-repeat:no-repeat;
和background-size:100% 100%
3.html5l里面的data-*
属性
<input type="button" value="按钮" data-index="10"data-index-color="red">
调用需用
var oBtn=document.querySelector('input');
console.log(oBtn.getAttribute('value')); //按钮
console.log(oBtn.getAttribute('index')); //10
console.log(oBtn.getAttribute('data-index')); //10
console.log(oBtn.getAttribute