The ::before selector inserts something before the content of each selected element(s).

Example:

.selector::before { 
     content: "Read this: ";
}

 
Source: http://www.w3schools.com/CSSref/sel_before.asp