I would like to have robust CSS that has all the forms that I looked the same.
I am facing a problem when defining CSS properties for buttons and text fields
here is css
#content .forms input {
border: 1px solid #CCCCCC;
background-color: #FFFFFF;
}
I would like to have CSS for buttons separate from buttons, but
"# content.forms 'input'"
does the same thing. Any ideas on how I will do this?
source
share