0
How do I, when dialing a radio buttom, release a content from a div? Type this example only using radio buttom! Thank you
<label>Mostrar termos:</label> <input type="checkbox" id="termos" />
<div id="termoTexto">
Seus termos estarão aqui
</div>
input[type=checkbox]:checked ~ #termoTexto{
display: block;
}
#termoTexto {
display:none;
}
<div class="panel-body " id="formadepagamento"> <div class="Row"> <div class="col-Md-6 text-left H3"> Payment form </div> </div> <br> </div>
– Paulo Junior
he did not display this div
– Paulo Junior
The answer is based on what is in the question.
– Sam
I put a shape using JS.
– Sam
Thanks, it worked out
– Paulo Junior