How to align two boxes in a line?

How to align two text boxes on same line with CSS

  • I have two text boxes that by default, use "display: block;" style. I want to keep the label above the first textbox, but I want the second textbox to be shown just to the right of the first text box. Here is my view: <div class="form-group"> @Html.LabelFor(model => model.DescriptiveSize, "Descriptive Size") @*2014-04-11: Issue #93*@ @Html.TextBoxFor(model => model.DescriptiveSize, null, new { @class = "form-control", maxlength = "10",style = "width:25%;" }) @Html.DropDownList("UomList", ViewData["UomList"] as SelectListItem[], new { @class = "form-control",style = "width:25%;" }) @Html.ValidationMessageFor(model => model.DescriptiveSize) </div> Here is how it looks: EDIT: And here is the HTML:

  • Answer:

    You can add a "float: left" property to your two textboxes. It makes it align on same line. HTML ABC<br /> <div id="textbox1"></div> <div id="textbox2"></div> CSS #textbox1, #textbox2 { display: block; float: left; width: 100px; height: 100px; } #textbox1 { background-color: red; } #textbox2 { background-color: blue; } See http://jsfiddle.net/blck/H499e/

devlin carnate at Stack Overflow Visit the source

Was this solution helpful to you?

Other answers

Just add display: inline or display: inline-block to the INPUT and SELECT elements: HTML <form class="selectSize"> <label>Size</label> <input type="text" placeholder="Small"/> <select> <option>Select..</option> <option>Size 1</option> <option>Size 2</option> </select> </form> CSS .selectSize label, .selectSize input, .selectSize select { display: block; } .selectSize input, .selectSize select { display: inline; } http://jsfiddle.net/Bg8EQ/

Chris

Just Added Q & A:

Find solution

For every problem there is a solution! Proved by Solucija.

  • Got an issue and looking for advice?

  • Ask Solucija to search every corner of the Web for help.

  • Get workable solutions and helpful tips in a moment.

Just ask Solucija about an issue you face and immediately get a list of ready solutions, answers and tips from other Internet users. We always provide the most suitable and complete answer to your question at the top, along with a few good alternatives below.