mirror of
https://github.com/classilla/tenfourfox.git
synced 2025-02-10 14:32:44 +00:00
21 lines
378 B
HTML
21 lines
378 B
HTML
|
<!DOCTYPE HTML>
|
||
|
<style>
|
||
|
|
||
|
div.button {
|
||
|
display: inline-block;
|
||
|
background: yellow;
|
||
|
border: 2px solid fuchsia;
|
||
|
padding: 2px;
|
||
|
font-size: 10px;
|
||
|
}
|
||
|
|
||
|
span {
|
||
|
display: inline-block; vertical-align: middle;
|
||
|
height: 20px; width: 50px; border: 2px solid blue;
|
||
|
margin: 1px 2px; /* for implicit focuspadding, partly eroded */
|
||
|
}
|
||
|
|
||
|
</style>
|
||
|
|
||
|
<div class=button><span></span></div>
|