尺寸最小

时间:2019-03-23 11:26:09

标签: css html5 forms

标题可能有点模糊,但这是对我的问题的最好解释。我在CSS代码中弄乱了一些内容,该代码目前使表单的大小保持奇怪状态,宽度大约为0。

我添加了图片以显示其外观:

This is the problem

我尝试将width: 100px;添加到我的CSS文件中,但没有执行任何操作。这是CSS和HTML代码:

input[type="text"],
input[type="password"],
input[type="email"],
input[type="tel"],
select,
textarea {
    -moz-appearance: none;
    -webkit-appearance: none;
    -ms-appearance: none;
    appearance: none;
    background: rgba(144, 144, 144, 0.075);
    border-radius: 0;
    border: none;
    border: solid 1px #dbdbdb;
    color: inherit;
    display: block;
    outline: 0;
    padding: 0 1em;
    text-decoration: none;
    background-color: grey;
    width: 100px;
}

input[type="text"],
input[type="password"],
input[type="email"],
select {
    height: 2.75em;
    width: 100px;
}

textarea {
    padding: 0.75em 1em;
    margin-bottom: 20px;
    resize: vertical;
    width: 100px;
    height: 100px;
}
<?php
    if(isset($_SESSION["username"]) and $_SESSION["username"] == "No User")
    {
        echo"<form action='index.php' method='post'>
        <input type= 'text' name='gebruikersid' placeholder='Gebruikersnaam' size='20' maxlength='20' required>
        <input type= 'email' name='mail' placeholder='Email Addres' size='20' maxlength='50' required>
        <input type= 'password' name='wachtwoord' placeholder='Wachtwoord' size='20' maxlength='30' required>
        <input type= 'password' name='wachtwoordcheck' placeholder='Wachtwoord bevestigen' size='20' maxlength='30' required>
        <input type= 'text' name='voornaam' placeholder='Voornaam' size='20' maxlength='30' required>
        <input type= 'text' name='achternaam' placeholder='Achternaam' size='20' maxlength='30' required>
        <select name='sekse'>
            <option value='Man'>Man</option>
            <option value='Vrouw'>Vrouw</option>
        </select>
        <input type='submit' name='reg' value='Registreer'>

        </form>";
    }
?>

出于某种原因,当我从Stack Overflow运行此程序时,它看起来应该看起来像。这是否意味着这部分代码没有错?因为在那种情况下,我将不得不去看其他部分,但是我不确定。

2 个答案:

答案 0 :(得分:5)

该代码似乎绝对正确。检查继承的样式。您可以在Chrome开发工具中轻松找到它。在CSS toolbar中,您可以找到影响每个特定元素的选择器和属性的完整列表。

从图片中看起来好像通过了红色轮廓。尝试找出该选择器(如果未调试)。

答案 1 :(得分:0)

由于某些原因,对我的CSS文件所做的更改未显示在我的PC上。我去了手机,更改已应用。更改宽度是可行的,但是在我的电脑上却不能。很奇怪。这可能是我的学校服务器的缺点。

无论如何,代码实际上只是在不直接显示在我的电脑上而工作。

如果其他人有此问题,则只需使用: Ctrl + Shift + R 清除缓存,然后添加.css文件中的编辑。