0
I want my text to have the borders as follows:
Top: black
Side: Grey
Follow an example of how I’d like you to stay:
Follow image as far as I can. How do I make the top edge black and increase the distances from the sides of the text ? Follows HTML and CSS I’m using.
.explicacao_produto{
border: 1px solid #C0C0C0;
margin-left: 10px;
}
<h:panelGroup layout="block" styleClass="explicacao_produto">
<h2>Bermuda Lacoste</h2>
<p>texto</p>
<h4 class="dimensao">Dimensões</h4>
<p>- Altura: 9,5cm</p>
<p>- Diâmetro: 8cm</p>
<p>- Capacidade: 300ml</p>
</h:panelGroup>