OLD | NEW |
---|---|
(Empty) | |
1 <html> | |
2 <head> | |
3 <title>Page with some absolute-positioned buttons</title> | |
4 <style> | |
5 body { | |
6 margin: 0; | |
7 padding: 0; | |
8 } | |
9 button { | |
10 position: absolute; | |
11 width: 200px; | |
12 height: 100px; | |
13 outline: 1px solid #000; | |
14 } | |
15 .first { | |
16 left: 0px; | |
17 top: 0px; | |
18 } | |
19 .second { | |
20 left: 225px; | |
21 top: 25px; | |
22 } | |
23 </style> | |
24 </head> | |
25 <body> | |
26 <button class="first">First</button> | |
27 <button class="second">Second</button> | |
28 </body> | |
29 </html> | |
OLD | NEW |