Hi,
This simple code shows how the color affected the input element in FireFox!! The 'class=="color1"' made the input element become 3D. It is 2D if there is no 'class=="color1"'.
Can you tell me why and how to set the background color of the input element (by css) with it remains 2D?
<html>
<head>
<style type="text/css">
<!--
.color1 {background-color: #aabbcc;}
-->
</style>
<body>
<form>
<input type="text" class="color1";> The 'class=...' made the input element become 3D. Without it, the input element will is 2D.
</form>
</body>
</html>
This simple code shows how the color affected the input element in FireFox!! The 'class=="color1"' made the input element become 3D. It is 2D if there is no 'class=="color1"'.
Can you tell me why and how to set the background color of the input element (by css) with it remains 2D?
<html>
<head>
<style type="text/css">
<!--
.color1 {background-color: #aabbcc;}
-->
</style>
<body>
<form>
<input type="text" class="color1";> The 'class=...' made the input element become 3D. Without it, the input element will is 2D.
</form>
</body>
</html>