Reputation: 131
I'm trying to make a simple chatbox. Until I add border It looks fine (width and height wise)
But when I add border: solid 1px gray
, I get:
What causes this?
Also I'm trying to position messages sent by the user on the right with float: right
:
However, as you can see, the next message sent ends up on the same line.
Thanks in advance!
Upvotes: 0
Views: 275
Reputation: 13407
Updated HTML and CSS ... See updated fiddle
<div>
<div class="message">
<p>Hello</p>
</div>
<div class="clearfix">
<div class="message me">
<p>Hello</p>
</div>
</div>
<div class="message">
<p>Hello</p>
</div>
<div class="message">
<p>Hello</p>
</div>
<div class="message">
<p>Hello</p>
</div>
<div class="message">
<p>Hello</p>
</div>
</div>
Extra CSS
.clearfix::after {
content: "";
clear: both;
display: table;
}
.message p {
margin: 0;
}
Upvotes: 1