输入类型=“文件”导致iPhone上的水平屏幕溢出

时间:2018-04-24 14:26:28

标签: html ios

我正在建立一个使用各种表格的网站。我注意到如果我有一个输入,其中类型设置为'文件'它显示在我的iphone上水平溢出(在纵向模式下)。有没有办法纠正这个?非常感谢任何帮助。

代码示例:

<html lang="en">
    <head>
        <meta name="viewport" content="width=device-width; initial-scale=1; maximum-scale=1.0; user-scalable=no">
        <title>Test</title>
    </head>
    <body>
        <form action="/" method="post">
            <h3>Submit image</h3>
            <div>              
                <label for="image">Image</label>
                <input type="file" id="image" name="image" accept="image/*" required>
            </div>
        </form>
    </body>
</html>

0 个答案:

没有答案