JSFiddle - React, Tailwind, and code Playground

HTML

<p class="q">
Node.js is a platform built on Chrome's JavaScript runtime for easily building fast, scalable network applications. Node.js uses an event-driven, non-blocking I/O ...
</p>

CSS

body{background: #ddd;}
.q {
    padding: 10px 20px;
    border-top:1px dashed #eee;
    border-bottom:1px dashed #ccc;
    position: relative;
}
.q::before {
    content:'';
    top:0;
    left:0;
    position: absolute;
    width:100%;
    height:100%;
    border-top:1px dashed #ccc;
    border-bottom:1px dashed #eee;
}