blob: 283bd7ff3469c2c004fc9da636c5fad3643a6137 (
plain)
1
2
3
4
5
6
7
8
9
10
|
<!DOCTYPE HTML>
<style type="text/css">
#four { background-image: none; }
#five { background-image: none ! important; }
</style>
<input type="text" value="Themed">
<input type="text" value="Not Themed" style="background-image: none">
<input type="text" value="Not Themed" style="background-image: none ! important">
<input type="text" value="Not Themed" id="four">
<input type="text" value="Not Themed" id="five">
|