CSS content before demo

by frankvaneykelen

HTML

<div class="header">
  <p>
    This is the header
  </p>
</div>
<div class="body">
  <p>
    This is the body
  </p>
</div>

CSS

div p { 
  border: 1px dashed #ccc; 
  padding: 1em; 
  margin-bottom: 0 
}

div.body::before { 
    content: " Koptekst ";
    background-color: #eee;
    border: 1px solid #ccc;
}