When i design our web-form then i see then my web-form is very small then my web page Because my form have only two field (two text-box two label) How i design it. then he look Beautiful.
+1
A:
Increase
- font size
- paddings
- textbox size
Reduce
- page size
Or add some nice pictures around... :P
o.k.w
2009-11-28 09:13:56
+1
A:
Bam! Chuck the following CSS into your CSS file. You may change the size of the font but generally all your form elements will now be nice and big.
input,button,select
{
font-size:18px;
}
or, in your HTML
<style type="text/css">
input,button,select
{
font-size:18px;
}
</style>
Sam152
2009-11-28 09:14:30
+2
A:
You need to learn about styles and Cascading Style Sheets (CSS). You can use this tutorial for example:
Mark Byers
2009-11-28 09:15:35
A:
full example to build web form using css3 and html5 http://bit.ly/brbTDz
Waleed Mohamed
2010-08-03 12:54:38