| OLD | NEW |
| (Empty) | |
| 1 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/x
html1/DTD/xhtml1-strict.dtd"> |
| 2 <html xmlns="http://www.w3.org/1999/xhtml" lang="en"> |
| 3 <head> |
| 4 <title>CSS Test: inline-block: width</title> |
| 5 <link rel="author" title="Ian Hickson" href="mailto:ian@hixie.ch"/> |
| 6 <link rel="alternate" href="http://www.hixie.ch/tests/adhoc/css/box/inline-blo
ck/005.html" type="text/html"/> |
| 7 <link rel="help" href="http://www.w3.org/TR/CSS21/visudet.html#inlineblock-wid
th" /> |
| 8 <meta name="flags" content="interact"/> |
| 9 <style type="text/css"> |
| 10 p { text-indent: 5em; } |
| 11 span { display: inline-block; |
| 12 border: blue solid; color: silver; |
| 13 margin: 0.5em; padding: 0.5em 5em 0.5em 0;; } |
| 14 </style> |
| 15 </head> |
| 16 <body> |
| 17 <p> Make your window an inch or two bigger than than the width of |
| 18 one inline-block. All inline-blocks should be the same size. Try |
| 19 resizing the window so that inline-blocks wrap in one or two |
| 20 columns. </p> |
| 21 <p>The first line is indented. Therefore, the first block on the first line, i
f the |
| 22 line is short enough, should end up wrapping onto two lines internally. In add
ition |
| 23 each inline-block has 5em indentation on the left and 5em padding on the right
, |
| 24 which should make no difference except that the boxes should be slightly wider
than |
| 25 <a href="002.html">before</a>. They shouldn't wrap particularily more than be
fore.</p> |
| 26 <p> |
| 27 <span>this is an inline-block this is an inline-block</span> |
| 28 <span>this is an inline-block this is an inline-block</span> |
| 29 <span>this is an inline-block this is an inline-block</span> |
| 30 <span>this is an inline-block this is an inline-block</span> |
| 31 <span>this is an inline-block this is an inline-block</span> |
| 32 <span>this is an inline-block this is an inline-block</span> |
| 33 <span>this is an inline-block this is an inline-block</span> |
| 34 <span>this is an inline-block this is an inline-block</span> |
| 35 <span>this is an inline-block this is an inline-block</span> |
| 36 <span>this is an inline-block this is an inline-block</span> |
| 37 <span>this is an inline-block this is an inline-block</span> |
| 38 <span>this is an inline-block this is an inline-block</span> |
| 39 </p> |
| 40 </body> |
| 41 </html> |
| OLD | NEW |