-
Type:
Incident report
-
Resolution: Won't fix
-
Priority:
Trivial
-
None
-
Affects Version/s: None
-
Component/s: None
-
None
Steps to reproduce:
- I can use <div> element to showing all radio buttons in rectangle
- <!DOCTYPE html>
<html>
<head>
<title>Grouped Radio Buttons</title>
<style>
.radio-group { border: 1px solid #ccc; /* Add a border */ padding: 10px; /* Add some padding */ margin-bottom: 10px; /* Add some margin */ border-radius: 5px; /* Optional: Rounded corners */ }</style>
</head>
<body>
<div class="radio-group">
<h3>Choose your favorite fruit:</h3>
<label>
<input type="radio" name="fruit" value="apple"> Apple
</label>
<label>
<input type="radio" name="fruit" value="banana"> Banana
</label>
<label>
<input type="radio" name="fruit" value="cherry"> Cherry
</label>
</div>
</body>
</html>
Result:
See screenshot...
Expected:
Does CDiv class support showing all radio buttons in rectangle?