I have the drop down list, and i want to strike through the specific option. I'm using the below sample code, the red color is working fine but line-through is working in IE, but not working in chrome
<select>
<option>option 1</option>
<option style="text-decoration:line-through; color:red;">option 2</option>
<option>option 3</option>
</select>
I want to apply this without any jquery or any other library, just by directly through JavaScript & css