CSS Property Value How to - white-space: pre-line;








Question

We would like to know how to white-space: pre-line;.

Answer


<!DOCTYPE html>
<html>
<head>
<style>
p {<!--from   w  w  w  .  j a v  a 2s  . co m-->
  white-space: pre-line;
}
</style>
</head>
<body>
  <p style="text-align: center; font-size: 12pt;">text-as-abc
    text-as-abc text-as-abc text-as-abc text-as-abc text-as-abc</p>
</body>
</html>

The code above is rendered as follows: