Add the class "Button" to an element to declare that it is of the Button class.
e.g. <a class="Button">A Button</a>
Buttons can contain almost any arbitrary html.
A Button Blockdisabled ButtonTo declare that the Button is disabled:
disabled to the element to declare that the Button is disableddisabled to the element e.g. <a class="Button disabled">A disabled Button</a>
notFocused ButtonIn order to handle the notFocused state of jBrowser windows, there is a notFocused Button state.
There's nothing you have to do to your Button to get this feature.
class=roundRightButton roundRight
class=roundLeftButton roundLeft
class=roundButton round
NOTE: IE8 gracefully degrades. It does not support rounded edges.
The size of a Button is determined based on the CSS font-size.
e.g <a style="font-size:1.2em" class="round Button">button</a>
e.g <p style="font-size:1.2em"> <a class="round Button">button</a> </p>