Set input height 100% of parent

2019-06-16 15:38发布

I have a little problem with setting input (type text) height to fit 100% of parents (td) height. I even tried to iterate through every input and set it height manually with jQuery, but it takes quite a lot of time (site I am working on has a lot of cells) and still doesn't work on IE 7 and 8 (I have to make site work under those too). Here is a sample: http://st8.eu/test.html It would be greatly appreciated if anybody knows any solution/hack.

3条回答
狗以群分
2楼-- · 2019-06-16 15:49

You can set position:absolute to the input.

Here a Fiddle example (note that you must also set a width for the <td> that contains the input):

input{
    position:absolute;
    top:0px;
    height:100%;
}
td{
    position:relative;
    width:200px;
}

It works also with <input type="submit"> and <div>.

Tested on Firefox and Chrome

UPDATE: Doesn't work in Explorer, you can set a min-height to the input to make it at least usable.

UPDATE2: For Dracco, here a Fiddle implementing your example.

查看更多
三岁会撩人
3楼-- · 2019-06-16 16:07

You cannot set height:100%; on an element if the parent hasn't a set height.

Just set td { height: 30px; } and it should work.

Actually, my last link was not working. After a few researches, it seems that you cannot achieve what you want without some JavaScript. But as you said, you tried to use JavaScript, so I assume this should be what you're looking for : Answer to the same kind of question (Have a look at its fiddle.) Seemingly, you won't have the choice.

查看更多
放荡不羁爱自由
4楼-- · 2019-06-16 16:08

Somehow setting table height to 100% works.

css:

table {height: 100%;}
input {height: 100%;}

html:

<table>
  <tr>
    <td> 1<br> 1 </td>
    <td> <input> </td>
  </tr>
</table>
查看更多
登录 后发表回答