“Afficher 4 boutons radio horizontaux bootstrap 4” Réponses codées

Bootstrap à cocher en ligne

<div class="form-check form-check-inline">
  <input class="form-check-input" type="checkbox" id="inlineCheckbox1" value="option1">
  <label class="form-check-label" for="inlineCheckbox1">1</label>
</div>
<div class="form-check form-check-inline">
  <input class="form-check-input" type="checkbox" id="inlineCheckbox2" value="option2">
  <label class="form-check-label" for="inlineCheckbox2">2</label>
</div>
<div class="form-check form-check-inline">
  <input class="form-check-input" type="checkbox" id="inlineCheckbox3" value="option3" disabled>
  <label class="form-check-label" for="inlineCheckbox3">3 (disabled)</label>
</div>
Relieved Reindeer

Bootstrap Form-Control en ligne

<div class="form-group">
    <label for="birthday" class="col-xs-2 control-label">Birthday</label>
    <div class="col-xs-10">
        <div class="form-inline">
            <div class="form-group">
                <input type="text" class="form-control" placeholder="year"/>
            </div>
            <div class="form-group">
                <input type="text" class="form-control" placeholder="month"/>
            </div>
            <div class="form-group">
                <input type="text" class="form-control" placeholder="day"/>
            </div>
        </div>
    </div>
</div>
Lazy Locust

Afficher 4 boutons radio horizontaux bootstrap 4

 <td><input type="radio" /> <label for="css">Car</label><br /><input type="radio" /> <label for="css">Van</label><br />
            <input type="radio" /> <label for="css">Tuk tuk</label></td>
Disturbed Dog

Réponses similaires à “Afficher 4 boutons radio horizontaux bootstrap 4”

Questions similaires à “Afficher 4 boutons radio horizontaux bootstrap 4”

Plus de réponses similaires à “Afficher 4 boutons radio horizontaux bootstrap 4” dans HTML

Parcourir les réponses de code populaires par langue

Parcourir d'autres langages de code