スクショは真ん中なのにCSSは左寄せ()
.odd {background-color:lightpink;}
.even {background-color:lightgreen;}
.comment-block{
display:flex;
flex-wrap: nowrap;
content-justify:start;
}
.name{
white-space: nowrap;
}
.comment-text{
display: -webkit-box;
-webkit-box-orient: vertical;
-webkit-line-clamp: 1;
width: 100%;
overflow: hidden;
text-overflow:ellipsis;
}
意味あるのかこれ……?
.comment-body::before{display: none;}