OLD | NEW |
---|---|
1 <!DOCTYPE html> | 1 <!DOCTYPE html> |
2 <html> | 2 <html> |
3 <head> | 3 <head> |
4 <style> | 4 <style> |
5 body { | 5 body { |
6 height: 300px; | 6 height: 300px; |
7 } | 7 } |
8 #div { | 8 #div { |
9 position: relative; | 9 position: relative; |
10 float: left; | 10 float: left; |
11 z-index: 10; | 11 z-index: 10; |
12 } | 12 } |
13 span { | 13 span { |
14 display: inline-block; | 14 display: inline-block; |
15 border: 1px solid black; | 15 border: 1px solid black; |
16 } | 16 } |
17 span:hover { | 17 span:hover { |
18 color: green; | 18 color: green; |
19 } | 19 } |
20 </style> | 20 </style> |
21 </head> | 21 </head> |
22 <body> | 22 <body> |
23 <div id="div"> | 23 <div id="div"> |
24 <span>This text should be in a box</span> | 24 <span>This text should be in a box</span> |
25 </div> | 25 </div> |
26 </body> | 26 </body> |
27 </html> | 27 </html> |
OLD | NEW |