Wed, 31 Dec 2014 07:53:36 +0100
Correct small whitespace inconsistency, lost while renaming variables.
michael@0 | 1 | <!DOCTYPE html> |
michael@0 | 2 | <html> |
michael@0 | 3 | <head> |
michael@0 | 4 | <style> |
michael@0 | 5 | .outermost { border: 2px solid; } |
michael@0 | 6 | .outer { border: 4px solid yellow; } |
michael@0 | 7 | .inner { border: 6px sold green; } |
michael@0 | 8 | </style> |
michael@0 | 9 | </head> |
michael@0 | 10 | <body> |
michael@0 | 11 | <span class="outermost" style="border-right: none"> |
michael@0 | 12 | <span class="outer" style="border-right: none"> |
michael@0 | 13 | <span class="inner" style="border-right: none"> |
michael@0 | 14 | </span> |
michael@0 | 15 | </span> |
michael@0 | 16 | </span> |
michael@0 | 17 | <span style="display: block"></span> |
michael@0 | 18 | <span class="outermost" style="border-right: none; border-left: none"> |
michael@0 | 19 | <span class="outer" style="border-right: none; border-left: none"> |
michael@0 | 20 | <span class="inner" style="border-right: nonel border-left: none"> |
michael@0 | 21 | before span |
michael@0 | 22 | </span> |
michael@0 | 23 | </span> |
michael@0 | 24 | </span> |
michael@0 | 25 | <span style="display: block">span</span> |
michael@0 | 26 | <span class="outermost" style="border-left: none"> |
michael@0 | 27 | <span class="outer" style="border-left: none"> |
michael@0 | 28 | <span class="inner" style="border-left: none"> |
michael@0 | 29 | after span |
michael@0 | 30 | </span> |
michael@0 | 31 | </span> |
michael@0 | 32 | </span> |
michael@0 | 33 | </body> |
michael@0 | 34 | </html> |