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
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
Related Q & A:
- How To Connect Two Different Network Segments Using A Switch And A Router?Best solution by Super User
- How to Map Two Tables To One Class in Fluent NHibernate?Best solution by stackoverflow.com
- How to use BitmapFont.TextBounds to center a line of the text on the screen?Best solution by Stack Overflow
- How to align the valves on my trumpet?Best solution by Yahoo! Answers
- How do I make a background image full page with CSS?Best solution by stradegyadvertising.com
Just Added Q & A:
- How many active mobile subscribers are there in China?Best solution by Quora
- How to find the right vacation?Best solution by bookit.com
- How To Make Your Own Primer?Best solution by thekrazycouponlady.com
- How do you get the domain & range?Best solution by ChaCha
- How do you open pop up blockers?Best solution by Yahoo! Answers
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.