Warning: file_get_contents(/data/phpspider/zhask/data//catemap/1/php/282.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
Php firefox形式的隐形tekst_Php_Firefox_Invisible - Fatal编程技术网

Php firefox形式的隐形tekst

Php firefox形式的隐形tekst,php,firefox,invisible,Php,Firefox,Invisible,我开发了这个网站,我得到了一些代码,我的问题是它在chrome中运行良好,但在其他浏览器中,当我在输入字段中输入txt时,它是不可见的(看不到我键入的内容) 有什么想法吗 <h2 style="margin-bottom: 0px; font-weight: bold; color: #fff;">INVISIBLE TEXT IS HERE :</h2> <form method="post" action="" style="margin-top: 13

我开发了这个网站,我得到了一些代码,我的问题是它在chrome中运行良好,但在其他浏览器中,当我在输入字段中输入txt时,它是不可见的(看不到我键入的内容)

有什么想法吗

<h2 style="margin-bottom: 0px; font-weight: bold; color: #fff;">INVISIBLE TEXT IS HERE :</h2>
    <form method="post" action="" style="margin-top: 13px;">
        <input type="text" name="deposit_wallet" style="padding: 10px 10px; width: 500px; font-size: 18px; font-weight: bold; text-align: center; color: #006374;" /><br />
        <input type="hidden" name="deposit_username" value="<?=time();?>" />
        <input type="submit" name="deposit_start" class="button theme-btn" value="Continue" />
    </form>
此处显示不可见文本:


因此,只需更改文本颜色属性,如下所示:颜色:#000

此处显示不可见文本:


刚刚在FF 53上试用过,我无法复制该问题。我假设您的页面背景颜色为白色,而文本的颜色定义为白色:#fff;
<h2 style="margin-bottom: 0px; font-weight: bold; color: #000;">INVISIBLE TEXT IS HERE :</h2>
    <form method="post" action="" style="margin-top: 13px;">
        <input type="text" name="deposit_wallet" style="padding: 10px 10px; width: 500px; font-size: 18px; font-weight: bold; text-align: center; color: #006374;" /><br />
        <input type="hidden" name="deposit_username" value="<?=time();?>" />
        <input type="submit" name="deposit_start" class="button theme-btn" value="Continue" />
    </form>