/*
http://www.sitepoint.com/web-foundations/css3-attribute-selectors/
*/
div[class^="col-"], div[class*=" tocolor-"] {
background-color: #eee;
border: 1px solid black;
text-align:center;
}
/* anything starting with col- is made to be to have that border bc the
wildcard * was used in class*/