1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24
<!doctype html> <style> body { font-size: 96px; font-family: Arial; } #outer { background: #eee; } #wrap { display: inline-block; height: 10px; } </style> <body> <div id="outer"> X <div id="wrap">Y</div> </div> </body>