Can someone assist me in drawing double lines under my paragraph using pseudo elements only without using display block? Here is my code snippet with display block:
p:after {
content: "";
display: block;
width: 40px;
margin: 20px auto 0;
border-bottom: 1px solid;
border-top: 1px solid;
height: 7px;
}
<h1>The box-sizing Property</h1>
<p>Defines how the width and height of an element are calculated: should they include padding and borders, or not.</p>
<h2>box-sizing: content-box (default):</h2>
<p>Width and height only apply to the content of the element:</p>
<div id="example1">This div has a width of 300px. But the full width is 300px + 20px (left and right border) + 60px (left and right padding) = 380px!</div>
<h2>box-sizing: border-box:</h2>
<p>Width and height apply to all parts of the element: content, padding and borders:</p>
<div id="example2">Here, the full width is 300px, no matter what!</div>
Any help would be greatly appreciated.