javascript - margin collapsed without giving margin bottom -


enter image description here

as can see above, if don't give margin-bottom on 2017/08/17, won't show child tag.... used margin auto won't work either.

i deleted margin bottom 150px , result below

enter image description here

<div class="chat-box-single-line">   <abbr class="timestamp" >2017/08/17</abbr>    <div class="chatmsg">bla</div>    <div class="chatmsg">bla</div> </div> <div class="chat-box-single-line">  <abbr class="timestamp" >2017/08/18</abbr>    <div class="chatmsg">bla</div>    <div class="chatmsg">bla</div>    <div class="chatmsg">bla</div>    <div class="chatmsg">bla</div> </div> 


Comments

Popular posts from this blog

angular - DownloadURL return null in below code -

python 2.7 - Given three nested dictionaries, sort the top two nested dictionaries from a value in the innermost dictionary? -