其他分享
首页 > 其他分享> > css属性选择器

css属性选择器

作者:互联网

/*选择带有id属性的元素*/
a[id]{
    background: yellow;
}

a[id=first]{
    background: red;
}

/*class属性中包含item的元素*/
a[class*="item"]{
    background: deeppink;
}

/*选中href中以http开头的元素*/
a[href^=http]{
    background: blueviolet;
}

/*选中href中以pdf结尾的元素*/
a[href$=pdf]{
    background: gray;
}

标签:中以,http,元素,选择器,href,background,id,css,属性
来源: https://www.cnblogs.com/zhang-han/p/14174764.html