OLD | NEW |
1 <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"> | 1 <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"> |
2 | 2 |
3 <html> | 3 <html> |
4 <head> | 4 <head> |
5 <title>percentage heights</title> | 5 <title>percentage heights</title> |
6 <style> | 6 <style> |
7 » » body { margin: 2em; } | 7 » » body { margin: 2em; overflow: hidden; } |
8 div {margin: 2em; } | 8 div {margin: 2em; } |
9 </style> | 9 </style> |
10 </head> | 10 </head> |
11 | 11 |
12 <body> | 12 <body> |
13 <p style="display:none;">percentage height images in DIV with no height (red)</p
> | 13 <p style="display:none;">percentage height images in DIV with no height (red)</p
> |
14 <div style="border: 1px solid green;"> | 14 <div style="border: 1px solid green;"> |
15 <div style="border: 1px solid red;"> | 15 <div style="border: 1px solid red;"> |
16 <img height="100%" width="100%" src="../images/raptor.jpg"> | 16 <img height="100%" width="100%" src="../images/raptor.jpg"> |
17 </div> | 17 </div> |
18 </div> | 18 </div> |
19 <p>percentage height images in DIV with no height (red) in a DIV with no height
(green)</p> | 19 <p>percentage height images in DIV with no height (red) in a DIV with no height
(green)</p> |
20 <div style="border: 3px dotted green;"> | 20 <div style="border: 3px dotted green;"> |
21 <div style="border: 1px solid red;"> | 21 <div style="border: 1px solid red;"> |
22 <img height="100%" src="../images/raptor.jpg"> | 22 <img height="100%" src="../images/raptor.jpg"> |
23 </div> | 23 </div> |
24 </div> | 24 </div> |
25 <p>percentage height image in table cell (red), in a DIV with no height (green)<
/p> | 25 <p>percentage height image in table cell (red), in a DIV with no height (green)<
/p> |
26 | 26 |
27 <div> | 27 <div> |
28 <table style="border: 1px solid red;" height="100%"> | 28 <table style="border: 1px solid red;" height="100%"> |
29 <tr> | 29 <tr> |
30 <td style="border: 1px solid red;"><img src="../images/raptor.jpg"></td> | 30 <td style="border: 1px solid red;"><img src="../images/raptor.jpg"></td> |
31 </tr> | 31 </tr> |
32 </table> | 32 </table> |
33 </div> | 33 </div> |
34 </body> | 34 </body> |
35 </html> | 35 </html> |
OLD | NEW |