skip to Main Content

Can't align the input text with the radio button properly – Html

HTML <fieldset> <label id="radio-buttons">Would you recommand this website? <input type="radio" name="radio" value="button" class="inline" checked>Yes</input> <input type="radio" name="radio" value="button" class="inline">No</input> <input type="radio" name="radio" value="button" class="inline">Maybe</input> </label> </fieldset> CSS input{ margin: 5px 0 0 0; width: 100%; min-height: 1.3em; } .inline{ width:…

VIEW QUESTION

Vertical alignment of column rows in Bootstrap grid – Twitter bootstrap

Suppose you have a two-column layout using Twitter Bootstrap, in which you want to have specific rows vertically aligned with each other: <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0-alpha/css/bootstrap.min.css"/> <div class="container"> <div class="row"> <div class="col-sm-6"> <h2>Column 1</h2> <p>Optional content of variable height.</p> <p><strong>Align this…

VIEW QUESTION
Back To Top
Search