日期:2014-05-17 浏览次数:20811 次
<div style="width:100px;margin-left:20px;margin-right:20px;margin-top:20px;border:1px solid #000000"><input type="text"style="width:100px;" /></div>
<div style="width:100px;margin-left:20px;margin-right:20px;margin-top:20px;border:1px solid #000000;"><input type="text"style="width:100px;margin:-2px 0;" /></div>
------解决方案--------------------
我都用float解决的。另附上开心网输入框效果。
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <style type="text/css"> body{font-size:12px;} .it{display:table;border:1px solid #999;float:left} .it input{width:225px;height:13px;border:1px solid #fff;padding:3px;+margin:-1px 0;font-size:12px}/* 实际占位宽度高度 另 +10px */ .it .itc{border-top:1px solid #000;border-left:1px solid #000} .ib{float:left;} .ib input{border:1px solid #999;padding:0 10px;height:23px;line-height:20px;} </style> <div style="width:100%;overflow:hidden;border:1px solid red"> <div style="float:left;margin:5px 5px 0 5px">实得分</div><span class="it"><input type="text" onfocus="this.className='itc'" onblur="this.className=''"/></span> <span class="ib"><input type="button" value="搜索"/></span> </div>