How to style a form ? | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
0

How to style a form ?

How can I style a form ?

22nd Feb 2017, 4:57 PM
Samuele Sacchetti
Samuele Sacchetti - avatar
7 Answers
+ 6
of course you can, it is very easy with css try those border, width, weight, border radius,...
22nd Feb 2017, 6:12 PM
Kamil
Kamil - avatar
+ 5
just create a normal form
22nd Feb 2017, 7:47 PM
Kamil
Kamil - avatar
+ 2
You can set id, class, to help you to target elements, but you can do without also... If you have: <body> <div> <p>some text</p> <p>some text</p> <p>some text</p> </div> <p>some text</p> </body> You can target the second <p> by setting it an id or a class, or: div p:nth-child(2) But this selector will target all <p> that are 2nd child of a div... you can precise also the child ordering of the div, but since the selector grow up in complexity/verbosity, you will be advised to use id or class ;) That's exactly the same with forms elements ^^
25th Feb 2017, 12:32 AM
visph
visph - avatar
+ 1
and some more addition: background, color, padding, margin, font-style etc
22nd Feb 2017, 6:51 PM
Raj Kumar Chauhan
Raj Kumar Chauhan - avatar
0
but I have to create a div ? and then style the div ?
22nd Feb 2017, 7:46 PM
Samuele Sacchetti
Samuele Sacchetti - avatar
0
but to style I have to create an ID, class something, yeah ?
22nd Feb 2017, 8:52 PM
Samuele Sacchetti
Samuele Sacchetti - avatar
0
yes, thank you
25th Feb 2017, 5:51 AM
Samuele Sacchetti
Samuele Sacchetti - avatar