Hello,

I've got the following HTML...

<form id="order_submit">
 <input type="submit" value="Submit Order"/>
</form>

...that is being influenced by some more general CSS rules (background
and border and width). If I declare those things within the style
attribute I can get it to look how I want. Yet when I use the following
CSS it's not affected:

form#order_submit {
    width: 100%;
    background: none;
    border: none;
    text-align: center;
    }

form#order_submit input {
    font-size: large;
    font-family: Verdana;
    }

I know that I'm referencing it correctly because my rules for the
<input/> tag are working correctly. Even 'text-align' in the form's
declaration is working! It's just width, background, and border that are
not.

What am I missing here?


Thanks,
Chris.
______________________________________________________________________
css-discuss [EMAIL PROTECTED]
http://www.css-discuss.org/mailman/listinfo/css-d
List wiki/FAQ -- http://css-discuss.incutio.com/
Supported by evolt.org -- http://www.evolt.org/help_support_evolt/

Reply via email to