Forum Moderators: phranque
I'm editing an automated form to email someone.
This form is composed of five text fields,each one of wich originated from a html string like this:
<input name=x type=text size=35>
where the "size" attribute defines the width of the field.
Now,what I would to do is to modify the height of the field by adding the corresponding attribute but I don't know what it is:I tried with "height" but nothing happens...maybe a css would work,but I'm not sure where and how to place it...
Could anyone,please,help me?
Thanks in advance
Sincerely
.hello {
height: 20[b]px[/b];
} (there's a typo in the above example). The CSS is placed between
<style type="text/css"></style> tags, or linked from a separate file, both within the head section of your page. You can also alter the height inline: input type="text" name="a" [b]style="height:20px;"[/b]>