开发者

What's keeping my input element from displaying like a block element?

开发者 https://www.devze.com 2023-01-10 07:37 出处:网络
http://jsfiddle.net/aam7J/ How wo开发者_C百科uld I induce div-like behaviour on the input element? Specifically, how can I induce the width to expand such that its outer width including margin fills

http://jsfiddle.net/aam7J/

How wo开发者_C百科uld I induce div-like behaviour on the input element? Specifically, how can I induce the width to expand such that its outer width including margin fills up the container? width: 100% doesn't work, because it doesn't take into account the other box model attributes.


I use a "hack" to account for the input border width something like this...

<div>hello world</div>
​
<div class="adjustForTheInputBorder">
    <input type="text" />
</div>


input 
{
    width:100%; 
    border-width:2px; 
}

div.adjustForTheInputBorder
{ 
    margin-right: 4px;  /* or 2x whatever your input border width is */
}

div 
{
    background-color: pink;
}

My adjustForTheInputBorder class tends to have a name which more appropriately conveys my hatred of css though... :)

P.S. div renders as display:block by default, you don't need that there.

0

精彩评论

暂无评论...
验证码 换一张
取 消