I am looking for this solution : If Radio Button is Selected Show Div
but without javascript or jquery (only using html/css)?
Thanks
I am looking for this solution : If Radio Button is Selected Show Div
but without javascript or jquery (only using html/css)?
Thanks
you can add focus for radio input and add style for your div
this is an example
<!DOCTYPE html>
<html lang="en">
<head>
<style>
.div{
display: none;
}
.radio:focus + .div{
display: block;
}
</style>
</head>
<body>
<input type="radio" class="radio">
<div class="div">
<h3>hello world</h3>
</div>
</body>
</html>