I'm trying to set a background color to the html form tag but it doesn't work?! I thought it was a simple task! Help preciated! Thanks!
#form{
background-color: #000;
padding: 10px;
}
|
|
can we just see the html code of your form? maybe there's a class you're using that conflicts with your #form declaration. also, if you want the "form block" to have a background, put it inside a div and background it. if you want to give a background to the form inputs, you should give a style to the input objects
and so on |
|||
|
|
|
You should post the html, but if you want to set the stylesheet fot the form "tag", you should not use #. instead do something like:
"#" is applied for the elements with the appended id. the stylesheet you have written works for an element like < div id="form" >etc...< /div > |
|||
|
|