टेक्स्ट में टैब, लाइन ब्रेक और व्हाइटस्पेस सौंपने के लिए, व्हाइटस्पेस . का उपयोग करें जावास्क्रिप्ट में संपत्ति। मान सामान्य, अब्रैप, प्री आदि सेट करें। प्री सेट करने पर यह
<!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>