jimmyshoes
Programmer
Why is it that textboxes do not seem to inherit styles
For example the following does not work
The style must be added to the textbox itself
For example the following does not work
Code:
<form action="act.cfm"><div style="font-size:24px"><input type="text" value="Value" /></div></form>
Code:
<form action="act.cfm"><div><input type="text" value="Value" style="font-size:24px"/></div></form>