1

我在这里有一个表格,由于某种原因在 Firefox 中我无法在输入中单击 - 在任何其他浏览器中都可以正常工作。有谁知道问题是什么?

谢谢

<form method="post" id="adduser" class="user-forms" action="http://<?php echo $_SERVER['HTTP_HOST'] . $_SERVER['REQUEST_URI']; ?>">



                <p class="form-username">
                    <label for="user_name"><?php _e('Username (required)', 'frontendprofile'); ?></label>
                    <input class="text-input" name="user_name" type="text" id="user_name" value="<?php if ( $error ) echo esc_html( $_POST['user_name'], 1 ); ?>" />
                </p><!-- .form-username -->

 <p class="last_name">
                    <label for="first_name"><?php _e('First Name', 'frontendprofile'); ?></label>
                    <input class="text-input" name="first_name" type="text" id="first_name" value="<?php if ( $error ) echo esc_html( $_POST['first_name'], 1 ); ?>" />
                </p><!-- .last_name -->
                <p class="last_name">
                    <label for="last_name"><?php _e('Last Name', 'frontendprofile'); ?></label>
                    <input class="text-input" name="last_name" type="text" id="last_name" value="<?php if ( $error ) echo esc_html( $_POST['last_name'], 1 ); ?>" />
                </p><!-- .last_name -->



                <p class="form-email">
                    <label for="email"><?php _e('E-mail (required)', 'frontendprofile'); ?></label>
                    <input class="text-input" name="email" type="text" id="email" value="<?php if ( $error ) echo esc_html( $_POST['email'], 1 ); ?>" />
                </p><!-- .form-email -->



            </form>
4

2 回答 2

3

您在此处的填充规则导致了问题(第 69 行):

.style-profile textarea, .style-profile input[type="text"] {
    padding: 17px !important;
}

因为输入有一个固定的高度,这个规则实际上是关闭了可点击区域,让 Firefox 感到困惑。

于 2013-06-06T08:50:05.780 回答
0

line 7应该删除整行,它显示:

<center><a href="http://style-card.co.uk/id" border="0"><img src="http://style-card.co.uk/id/wp-content/uploads/2013/03/sclogo.jpg" border="0"></center>

您应该将打开的表单标签从这里line 142移到line 153这里应该可以解决您的问题

于 2013-06-06T08:31:40.023 回答