Does CDiv support showing all radio buttons in rectangle?

XMLWordPrintable

    • Type: Incident report
    • Resolution: Won't fix
    • Priority: Trivial
    • None
    • Affects Version/s: None
    • Component/s: None
    • None

      Steps to reproduce:

      1. I can use <div> element to showing all radio buttons in rectangle
      2. <!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?

            Assignee:
            Zabbix Development Team
            Reporter:
            snow uyl
            Votes:
            0 Vote for this issue
            Watchers:
            3 Start watching this issue

              Created:
              Updated:
              Resolved: