嗨問題是我給位置絕對的輸入,但我只是發現絕對位置不工作在輸入標籤任何人都可以知道? 我只是定位,這就是爲什麼我在這裏使用這個 想我的佈局液體是我的HTML代碼:位置絕對的css在輸入標籤中不起作用
<div id="savevalue">
<input type="text" name="name" id="name" class="inpt" />
<input type="button" value="Submit" class="btn" />
</div>
這裏是CSS代碼:
.inpt{
background:#fff;
border:1px solid #ccc;
height:30px;
font-size:18px;
position:absolute;
left:0;
right:100px;
}
.btn{
height:30px;
background:#333;
border:1px solid #222;
font-size:18px;
color:#fff;
padding:0 15px;
position:absolute;
right:0;
}
在這個你想要的。看到這個,並告訴http://jsfiddle.net/3pSRS/ –
@Pwn,只能在Chrome的作品 –
可能的重複[使用位置:絕對設置輸入寬度](http://stackoverflow.com/questions/1708654/使用positionabsolute-to-set-an-inputs-width) –