Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm having an incredibly difficult time achieving the following effect:

==========================================================
= Variable Width =  <input style="width: 100%" />        =
==========================================================

I am using the following HTML:

<dl>
  <dt>
    <label>Variable Width</label>
  </dt>
  <dd>
    <input style="width: 100%" />
  </dd>
</dl>

Please note that I've trimmed down the HTML for readability.

Can anyone suggest what CSS I should use to achieve this effect? I would prefer to not have to use display: table because I am looking for cross-browser compatibility that reaches IE7.

share|improve this question
What are you trying to get it to do? – Dave Sep 21 '11 at 18:04

1 Answer

up vote 6 down vote accepted

This is "incredibly difficult" to do without <table> or display: table.. until you know how!

See: http://jsfiddle.net/thirtydot/aLgwt/

This works in IE7 and greater + all modern browsers.

dt {
    float: left
}
dd {
    overflow: hidden;
    padding: 0 4px 0 9px
}
dd input {
    width: 100%
}

An explanation of why it works is here.

share|improve this answer
3  
I nominate you for official CSS God... I had everything except for overflow: hidden... – Wex Sep 21 '11 at 22:12

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.