How to give a line break using CSS?
Is this possible?
Is this possible?
<div class="topic">This the 1st Topic</div> <div class="topictext">The 1st Topic is all about...</div>
<div class="topic">This the 1st Topic<span class="newline">Another line...</span></div>
.newline {
display:block;
}
Comment