当前位置: 代码迷 >> HTML/CSS >> Html间距距离隐藏文本框,兼容各个浏览器
  详细解决方案

Html间距距离隐藏文本框,兼容各个浏览器

热度:33   发布时间:2012-08-21 13:00:22.0
Html间隔距离隐藏文本框,兼容各个浏览器
<select
							name="select"
							id="select"
							style="width: 85px; float: left;"
						></select>
						<input
							style="width: 70px; border: 0; background-color: transparent;"
							type="text"
							disabled="disabled"
						/>
						<span class="img"> <input
								type="submit"
								value=""
								style="background-image: url('images/button_search.gif'); width: 70px; height: 21px; border: 0px;"
							/> </span>


主要是这句:
<input
							style="width: 70px; border: 0; background-color: transparent;"
							type="text"
							disabled="disabled"
						/>
  相关解决方案