[class^="ico_task"]{
background:#F00;
width:100px;
height:100px;
}
[abc^="def"] 选择 abc 属性值以 "def" 开头的所有元素
[abc$="def"] 选择 abc 属性值以 "def" 结尾的所有元素
[abc*="def"] 选择 abc 属性值中包含子串 "def" 的所有元素
你可以参考:http://www.w3school.com.cn/css/css_selector_attribute.asp