SophieCiardullo / svcrafted

Project for Athabasca U COMP266: Website for SVCrafted using HTML, CSS, and JavaScript.
0 stars 0 forks source link

Contact Text Field Sizes Look Funky #3

Open JoeFurfaro opened 3 years ago

JoeFurfaro commented 3 years ago

image

The sizes of these fields look a bit funky. They don't match in width, and the alignment looks a bit clunky. Was this intentional? Not sure!

SophieCiardullo commented 3 years ago

Definitely not intentional, but haven't yet looked into how to write CSS for built-in HTML forms. Will do!

JoeFurfaro commented 3 years ago

@ciards1, you can control width of fields same as other elements, with the CSS width property (which takes a number of pixels (eg. 100px) or a percentage of parent width (eg. 80%). You can also add borders with the normal border controls, change text color with color, change background with background-color, change fonts as per usual, and make the outside curvy using border-radius: Xpx (where X is a number in pixels 😄)