Is it possible to include CSS 'content' in the 'option' tag? For example, I want to display "Name: Volvo".
<html>
<head>
<style>
option:before {
content: "Name: ";
}
</style>
</head>
<body>
<select>
<option value="volvo">Volvo</option>
<option value="saab">Saab</option>
<option value="opel">Opel</option>
<option value="audi">Audi</option>
</select>
</body>
</html>