gpt4 book ai didi

css - 表格尺寸最小

转载 作者:行者123 更新时间:2023-11-28 05:11:15 25 4
gpt4 key购买 nike

标题可能有点含糊,但这是对我的问题最好的解释。我在我的 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 运行它时,它看起来就像它应该的样子。这是否意味着这部分代码没有任何问题?因为在那种情况下,我将不得不去查看其他部分,但我不确定。

最佳答案

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

从图片上看,红色轮廓的某处似乎通过了。尝试找到这个选择器(如果它没有调试)。

关于css - 表格尺寸最小,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/55313224/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com