`
ljqian
  • 浏览: 6938 次
  • 性别: Icon_minigender_1
  • 来自: 常熟
社区版块
存档分类
最新评论
收藏列表
标题 标签 来源
覆盖文件上传的按键 css, 前端技术
<style>
.btn {
	position: relative;
	overflow: hidden;
	cursor: pointer;
	border: 1px solid #cccccc;
	color: #898989;
	-moz-border-radius: 4px;
}
.btn input {
	position: absolute;
	top: 0;
	right: 0;
	margin: 0;
	opacity: 0;
	filter: alpha(opacity = 0);
	cursor: pointer;
}
.file_add_box {
	clear: both;
}
</style>
<div class="file_add_box">
	<div class="btn">
		<span>导入通讯录</span>
		<input type="file" id="excelfile" name="excelfile" size="34">
	</div>
</div>
Global site tag (gtag.js) - Google Analytics