怎么做才能修复这个选择?页脚也是?

时间:2016-08-04 21:34:00

标签: html css html-select footer

我正在尝试为需要国家/地区,性别信息等的注册页面编写代码。但出于某种原因,我的国家/地区选择器在我测试时无法正常工作,它以纯文本回复给我。

<h2>Please select a country</h2>
<select name="dropdown2"; required>
    <option value="afg">Afghanistan</option>
    <option value="alb">Albania</option>
    <option value="dza">Algeria</option>
    <option value="and">Andorra</option>
    <!-- etc. -->
</select>

据我所知,代码中没有错误。但每当我预览它时,它都没有正确回复我。对于这两个代码条​​,对于页脚也是如此:

CSS

.footer {
    border: black; 20px;
    float: center;
    background-color: light-tan;
    height: 45px;
    width: 400px;
    padding-top: 500px;
    padding-right: 10px;
    padding-left: 10px;
    padding-bottom: 15px;
}

HTML

<div id ="footer"><h2>Site Map</h2>
    <p>Contact Us → Supported Languages <br>
    About Us → Help Us <br>
    Services → Website Copyright <br>
    </p>
</div>

我该怎么做才能解决这个问题?

1 个答案:

答案 0 :(得分:0)

此css不正确:border: black; 20px; 我猜它需要border: 20px solid black

float: center不存在。它是leftrightnone;

您有id="footer"但是在您的CSS中,您将其定义为班级.footer

不确定错误显示的选项是什么意思,你会显示<select name="dropdown2"; required>但它不是正确的HTML。