Jump to content

jonlulf

Members
  • Posts

    1
  • Joined

  • Last visited

Posts posted by jonlulf

  1. On example page:

    "https://www.w3schools.com/bootstrap/tryit.asp?filename=trybs_form_radio_inline&stacked=h"

    users might want one radio option checked at start. Then you could add the 'checked=""' to the example code on the option. See option 2 below.

    ---

    <div class="container">
      <h2>Form control: inline radio buttons</h2>
      <p>The form below contains three inline radio buttons:</p>
      <form>
        <label class="radio-inline">
          <input type="radio" name="optradio">Option 1
        </label>
        <label class="radio-inline">


          <input type="radio" name="optradio" checked="">Option 2


        </label>
        <label class="radio-inline">
          <input type="radio" name="optradio">Option 3
        </label>
      </form>
    </div>

    </body>
    </html>

    ---

×
×
  • Create New...