/* 특정 텍스트로 시작작하는 요소 */
span[class^="fruit"]{
  color: tomato;
}
span[class^="vege"]{
  color: olivedrab;
}