-*.button {
- /* reset margin and padding and see what happens */
- padding: 0;
- margin: 0;
- border: 2px solid blue;
-
- /*
- * Borders and padding:
- */
-
- /* observation 1: Firefox doesn't apply top/bottom borders to spans in button */
- /* observation 2: Webkit leaves out some padding to left/right
- also: it cuts the top/bottom margin to 1px max */
-
- /* observation 3: Opera does the oposite then WK and FF ->
- span has all borders, button has only left/right
- */
-
- /* Line Height */
-
- /* 1. Wszystkie przeglądarki, domyślnie ustawiają vertical-align: baseline */
- vertical-align: baseline;
-
- /* 2. Opera ustawia rozmiar przycisku, na rozmiar line-height obiektu, który go zawiera */
-
- display: inline-block;
- position: relative;
- background: yellow;
- padding: 2px 4px;