简体   繁体   中英

How to vertically align label and textfield?

I have the following page that looks like this: 在此处输入图片说明

Notice how the textfield is NOT ALIGNED with the label. How do I fix this.

Here is the html code:

<div class="main-body">
    <div id="search-box">
        <label class="label-major text-field-label" for="search">
            Find:
        </label>
        <input type="text" name="search" class="text-field-control-major" />
    </div>
</div>

Here is the CSS:

.label-section, .label-major {
    font-size: 2.5em;
    font-family: "courier new";
    display: inline-block;
}

.label-major {
    font-weight: bold;
}

.text-field, .text-field-control-major, .text-field-control-compressed, .text-field-form-input {
    padding: 0.15em;
    display: inline-block;
}

.text-field-control-major {
    font-size: 1.1em;
    height: 1.4em;
    width: 25em;
}

#search-box {
    vertical-align: middle; /* I hoped this would help, but it had no effect*/
}

And here is a JSFiddle: http://jsfiddle.net/2Q86w/

Add vertical-align: middle; to .label-major and .text-field-control-major. CSS will look like:

.label-section, .label-major {
    font-size: 2.5em;
    font-family: "courier new";
    display: inline-block;
    vertical-align: middle;
}

.text-field-control-major {
    font-size: 1.1em;
    height: 1.4em;
    width: 25em;
    vertical-align: middle;
}

try this ;)

<div class="container">
<div class="label"></div>
<div class="textbox"></div>
</div>

.container { clear: both; } .label { float: left; width: _ } .textbox{ float: left; }

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM