html - How can I reduce the space between two elements in CSS? -
i have simple form , attached css file that. can see there 2 fields , 1 checkbox - make checkbox directly under textarea, around 1-2px space, not - how can modify that? thought problem somewhere here:
.textox, .textoxarea { width: 340px; border: solid 1px #999999; padding: 2px; border-radius: 4px; font-size: 14px; box-shadow: 0px 1px 2px 0px #9c9c9c; background-color: #ffffff; outline: none; color: #474747; text-align: center; font-family: 'century gothic', centurygothic, applegothic, sans-serif; font-size: 14px; font-style: normal; font-variant: normal; font-weight: 100; }
but can't find proper way of doing that. here's fiddle. thanks!
remove empty paragraphs between textarea
, checkbox
.
in fiddle it's on lines 11 , 13.
Comments
Post a Comment