Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Chris Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

applying css to entire site

Status
Not open for further replies.

blexman

Programmer
Jul 18, 2001
34
CA
I would like to apply styles to the entire web site; using external stylesheet. But I am having problems defining the sytle for form submit buttons. I don't want to use classes (

<style type=&quot;text/css&quot;>
.button {
background-color: maroon; color=white; width:150px; }
</style>

... because I don't want to specify class=button for every button. Is ther a way to do this ?

thanks
hani
 
I'm sure that this is impossible.
You can define a global style for all INPUT, TEXTAREA and SELECT form elements at once - possible because they are represented by html tags.
But you cannot set a style for some specific type of <input> separately. So classes is the only way to do this.
 
There is a feature in CSS that will allow you to do what you want, but it is not widely support in browsers....

try this in your stylesheet:

Code:
input[type=&quot;submit&quot;] { background-color: maroon; color=white; width:150px; }

Check out for more information on this type of selector, and its variations.

The Style Sheet Guides at can give you a good idea of which browsers support which selectors (and properties) - try the &quot;Master List&quot; as well as the &quot;CSS2 Selectors&quot; list (which will include the above example).

Hope this helps. Ciao, K
 
Your stylesheet will work fine, but you can't use this for <input type=&quot;button&quot;>. You must use the button tag instead. Like this:

<style type=&quot;text/css&quot;>
.button {
background-color: maroon; color=white; width:150px; }
</style>
<button onClick=&quot;BlahBlah()&quot;>Click Me</button>

Rick

P.S. <button> is IE 5+ only.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top