1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23
<!DOCTYPE html> <html> <head> <script> function boom() { document.body.style.textIndent = "0%"; } </script> <style> body { float: left; } .c { padding-left: 60%; padding-right: 60%; white-space: pre; } .f { float: left; height: 2em; } </style> </head> <body onload="boom()"> <div class="c"> <div class="f">a</div> <div class="f">b</div></div> </body> </html>