Is there a custom style in the CSS or HTML tag where I get the effect as shown in the image below?
Itwouldbeaaside
withaborderof1px
andtheword"Realization" centered over the top border, but that the border below the text does not appear, as the image.
Is there anything in CSS or HTML that does this automatically?
Code I have:
/* estilos apenas como exemplo,
para mostrar o fundo preto e o texto centralizado*/
body{
background: #000;
color: #fff;
text-align: center;
}
<aside class="realiza">
<p>Realização:</p>
Qualquer texto aqui
</aside>