Forum Moderators: not2easy
Am sure this is possible, but cannot remember how it's done (if it can) I want my input type to use both the .text300 and .textFontChange class selector.
Here is an example CSS:
<style type="text/css">
<!--
input{
font-family: Arial, Helvetica, sans-serif;
width: 100px
}
.text300{
width:300
}
.textFontChange{
font-family: Verdana;
}
//-->
</style>
My HTML:
<input type="text" class="how do I use both the above classes?">
Many thanks for all help.
-George