JSFiddle - React, Tailwind, and code Playground
HTML
<div class="commentList">
<article class="comment " id="com21">1</article>
<article class="comment " id="com20">2</article>
<article class="comment " id="com19">3</article>
<div class="something"> hello </div>
</div>
CSS
body {
background: white;
}
.comment {
width:470px;
border-bottom:1px dotted black;
margin-bottom:10px;
}
.comment:last-of-type {
border-bottom:none;
margin-bottom:0;
}