Search
 
SCRIPT & CODE EXAMPLE
 

HTML

bootstrap radio

<div class="form-check form-check-inline">
  <input class="form-check-input" type="radio" name="inlineRadioOptions" id="inlineRadio1" value="option1">
  <label class="form-check-label" for="inlineRadio1">1</label>
</div>
<div class="form-check form-check-inline">
  <input class="form-check-input" type="radio" name="inlineRadioOptions" id="inlineRadio2" value="option2">
  <label class="form-check-label" for="inlineRadio2">2</label>
</div>
<div class="form-check form-check-inline">
  <input class="form-check-input" type="radio" name="inlineRadioOptions" id="inlineRadio3" value="option3" disabled>
  <label class="form-check-label" for="inlineRadio3">3 (disabled)</label>
</div>
Comment

bootstrap radio button

<div class="form-check">
  <input class="form-check-input" type="radio" name="exampleRadios" id="exampleRadios1" value="option1" checked>
  <label class="form-check-label" for="exampleRadios1">
    Default radio
  </label>
</div>
<div class="form-check">
  <input class="form-check-input" type="radio" name="exampleRadios" id="exampleRadios2" value="option2">
  <label class="form-check-label" for="exampleRadios2">
    Second default radio
  </label>
</div>
<div class="form-check disabled">
  <input class="form-check-input" type="radio" name="exampleRadios" id="exampleRadios3" value="option3" disabled>
  <label class="form-check-label" for="exampleRadios3">
    Disabled radio
  </label>
</div>
Comment

radio button bootstrap

<div class="btn-group btn-group-toggle" data-toggle="buttons">
  <label class="btn btn-secondary active">
    <input type="radio" name="options" id="option1" autocomplete="off" checked> Active
  </label>
  <label class="btn btn-secondary">
    <input type="radio" name="options" id="option2" autocomplete="off"> Radio
  </label>
  <label class="btn btn-secondary">
    <input type="radio" name="options" id="option3" autocomplete="off"> Radio
  </label>
</div>
Comment

bootstrap radio button

<input type="radio" class="btn-check" name="options" id="option1" autocomplete="off" checked>
<label class="btn btn-secondary" for="option1">Checked</label>

<input type="radio" class="btn-check" name="options" id="option2" autocomplete="off">
<label class="btn btn-secondary" for="option2">Radio</label>

<input type="radio" class="btn-check" name="options" id="option3" autocomplete="off" disabled>
<label class="btn btn-secondary" for="option3">Disabled</label>

<input type="radio" class="btn-check" name="options" id="option4" autocomplete="off">
<label class="btn btn-secondary" for="option4">Radio</label>
Comment

bootstrap radio button block

<!-- Default radio -->
<div class="form-check">
  <input class="form-check-input" type="radio" name="flexRadioDefault" id="flexRadioDefault1"/>
  <label class="form-check-label" for="flexRadioDefault1"> Default radio </label>
</div>

<!-- Default checked radio -->
<div class="form-check">
  <input class="form-check-input" type="radio" name="flexRadioDefault" id="flexRadioDefault2" checked/>
  <label class="form-check-label" for="flexRadioDefault2"> Default checked radio </label>
</div>
Comment

bootstrap radio button

bootstrap radio
Comment

PREVIOUS NEXT
Code Example
Html :: how to make a alert in powershell 
Html :: how to create an html file 
Html :: bootstrap text warning color 
Html :: how to access value of ant design elements 
Html :: nuxt cursor focus 
Html :: use of extends in django 
Html :: meta name= viewport 
Html :: bootstrap Badges Contextual variations 
Html :: how to make a dark mode html 
Html :: borderless bootstrap table 
Html :: html5 video player 
Html :: html button shortcut key 
Html :: is input readonluy submit ? 
Html :: input type phone number 
Html :: html required checkbox 
Html :: a tag open new tab 
Html :: How can I include python script in a HTML file? 
Html :: html width 
Html :: ion-searchbar debounce 
Html :: pyscript python 
Html :: html 
Html :: what is seizure disorder 
Html :: how can we open file manager by html 
Html :: remove arrow dropdown bootstrap 
Html :: html input submit size width 
Html :: img on click html 
Html :: safari input type number problem with decimals 
Html :: html marquee 
Html :: how to create comments in html5 
Html :: routerlinkactiveoptions 
ADD CONTENT
Topic
Content
Source link
Name
6+7 =