|
1 <!DOCTYPE html> |
|
2 <html> |
|
3 <head> |
|
4 <style> |
|
5 .none { -moz-appearance: none; } |
|
6 input, button { width: 1.5em; padding: 0; font-size: 14px; } |
|
7 </style> |
|
8 </head> |
|
9 <body> |
|
10 <input class="none" type="button" value="M"><br> |
|
11 <input class="none" type="button" value="M"><br> |
|
12 |
|
13 <input class="none" type="button" value="Long Text"><br> |
|
14 <input class="none" type="button" value="Long Text"><br> |
|
15 |
|
16 <input type="button" value="M"><br> |
|
17 <input type="button" value="M"><br> |
|
18 |
|
19 <input type="button" value="Long Text"><br> |
|
20 <input type="button" value="Long Text"><br> |
|
21 |
|
22 <button class="none" type="button">M</button><br> |
|
23 <button class="none" type="button">M</button><br> |
|
24 |
|
25 <button class="none" type="button">Long Text</button><br> |
|
26 <button class="none" type="button">Long Text</button><br> |
|
27 |
|
28 <button type="button">M</button><br> |
|
29 <button type="button">M</button><br> |
|
30 |
|
31 <button type="button">Long Text</button><br> |
|
32 <button type="button">Long Text</button><br> |
|
33 |
|
34 </body> |
|
35 </html> |