ExampleSection
by vitormosousa
HTML
<!-- Learn about this code on MDN: https://developer.mozilla.org/en-US/docs/Web/CSS/-webkit-border-before -->
<div>
<p class="exampleText">Example text</p>
</div>
CSS
div {
background-color: yellow;
width: 120px;
height: 120px;
}
.exampleText {
writing-mode: horizontal-rl;
-webkit-border-before: 5px dashed blue;
}