标签: input position fixed
我有<input type="button" />和<input type="text" />
<input type="button" />
<input type="text" />
如何在文本框的左侧加上加号,以便它始终存在,无论在浏览器上进行缩放......?
答案 0 :(得分:1)
您应该将两个控件都放在<div>标签中..并设置div的宽度,以便它始终保持固定大小,与浏览器的缩放无关。
<div>
然后将css应用于按钮:#buttonID { float:left; }
#buttonID { float:left; }