Để điều khiển các tab, ngắt dòng và khoảng trắng trong văn bản, hãy sử dụng khoảng trắng thuộc tính trong JavaScript. Đặt các giá trị normal, nowrap, pre, v.v. Khi đặt trước, nó hoạt động giống như thẻ
<!DOCTYPE html> <html> <head> <style> #box { width: 300px; height: 100px; border: 2px solid black; background-color: gray; } </style> </head> <body> <button onclick="display()">Set</button> <div id="box"> This is Demo Text. This is Demo Text. This is Demo Text. This is Demo Text. This is Demo Text. </div> <script> function display() { document.getElementById("box").style.whiteSpace = "pre"; } </script> </body> </html>