我的解决方案(插入一个按钮并将其浮动到我的文本框的右侧)是否是最好的,它是否可以跨浏览器兼容 HTML 5 标准?
我的 [+] 似乎也有点偏离顶部的中心。
<style>
#refdocs_wrapper {
border: 1px solid rgb(128,128,128);
height: 20px;
width: 179px;
}
#refdocs_button {
clip:rect(1px 200px 19px 1px);
position: absolute;
float: right;
height: 18px;
width: 18px;
}
#refdocs_input {
border: 0;
width: 154px;
padding:0px 0px 0px 2px;
}
</style>
<div id="refdocs_wrapper">
<input id="refdocs_input" type="text">
<input id="refdocs_button" type="button" value="+">
</div>