Can you help me understand why the HTML code below is causing a line break after the div closing tag? And do you have any suggestions on how to prevent this line break so that it resembles a simple table layout?
<p>
<div style="width:200px">Keyword1</div> :About 1<br>
<div style="width:200px">Keyword2</div> :About 2<br>
</p>
In my understanding, I expected the output to be:
Keyword1 : About 1
Keyword2 : About 2
But instead, it actually looks like this:
Keyword1
: About 1
Keyword2
: About 2