我正在尝试创建一个文件共享网站,但在设置上传表单时遇到了问题,因为我的设计非常先进,而不是设置我试图将设计设置为背景图像的个人样式。
这是我的设计 - http://icap.me/i/s5YIbheY3g.png
这是目前的努力 - http://icap.me/i/ODuzJOQMhS.png
到目前为止,我使用以下代码设置了上传按钮的样式 -
form input[type=submit] {
background : url("../img/upload.png") no-repeat center center;
width : 115px;
height :52px;
border : none;
color : transparent;
font-size : 0
}
你知道我如何使用图像来设置我的其他表单按钮的样式吗?这里是 html -
<form action="upload_file.php" method="post"enctype="multipart/form-data">
<input type="file" name="file" id="file" />
<br />
<input type="submit" name="submit" value="Submit" />
<input type="checkbox" name="vehicle" value="Bike">I agree to the terms and conditions<br>
</form>