Having - HTML and its CSS -
HTML -
<html>
<head>
<link href="css/breakLineInBrowser.css" rel="stylesheet">
</head>
<body>
<p>
Line 1.
Line 2.
Line 3.
</p>
</body>
</html>
CSS -
p {
}
In the browser it appears as -
Line 1. Line 2. Line 3.
Which CSS property have I add into the p {} in order to get it display as -
Line 1.
Line 2.
Line 3.
?
(I don't look for solution with </br> in the HTML)