OLD | NEW |
---|---|
(Empty) | |
1 <html> | |
Timothy Loh
2015/08/25 08:08:20
usually we use <!doctype html> and leave out the h
meade_UTC10
2015/08/25 08:22:51
Done.
| |
2 <head> | |
3 <style type="text/css"> | |
Timothy Loh
2015/08/25 08:08:20
<style>
meade_UTC10
2015/08/25 08:22:51
Done.
| |
4 .div1 { | |
5 cursor: pointer; | |
6 } | |
7 .button { | |
Timothy Loh
2015/08/25 08:08:20
could just do a tag name selector, i.e. button { .
meade_UTC10
2015/08/25 08:22:51
Done.
| |
8 border: 1px solid transparent; | |
9 background: none; | |
10 } | |
11 </style> | |
12 </head> | |
13 <body> | |
14 <div class="div1"> | |
15 <button class="button">hi</button> | |
16 </div> | |
17 <div> | |
18 <button class="button">hi</button> | |
19 </div> | |
20 </body> | |
21 </html> | |
OLD | NEW |