我有一个用于上传的文件上传字段,它位于一个150px x 150px透明的div中(不透明度:0;)。我想点击div中的任何部分弹出文件对话框,这样用户可以选择要上传的文件,所以我想增加它的高度和宽度。没有我的工作方法。我该怎么解决?
<div id="adds" align="center" style="cursor:pointer; cursor:hand;">
<h1 style="margin-top:45px;">
<span>Select<br />photo</span>
<input type="file" name="upper" id="upper" width="150" height="150" />
</h1>
</div>
</div>
最佳答案
#adds input {
height: 150px;
width: 150px;
}
使用CSS。请停止使用内联样式,但要知道,内联样式应该使用以下语法:
<input style="height:150px"; width:150px;"
Live demo here.
关于jquery - 增加文件上传字段的高度和宽度,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/18627843/