在我的CSS中这个问题可能是什么原因?

时间:2013-10-07 14:20:06

标签: php html css arrays

我目前已经构建了一个表单字段(下拉菜单)和一个按钮。我遇到的唯一问题是,当我尝试在第一个下面创建另一个下拉菜单时,它会将信息从包装盒中剔除,从而弄乱我的原始下拉菜单。有人可以看看,看看我做错了什么因为我不确定为什么会发生这种情况。

<?php
$shows = array( "Sesame Street on Ice", "The Wiggles Live", "Dora Live" )

$prices = array( 29.99, 35.49, 49.95, 34.99, 9.99 );

?>


<html>
<head>
<title></title>

<style type="text/css">

body {
background: tan;
font-family: arial;
}

#contentwrap {
background-color: white;
border: 6px darkred solid;
padding: 110px;
width: 600px;
margin: 20px auto 20px auto;
border-radius: 25px;
-moz-border-radius: 25px;
}

#heading {
color: darkred;
font-size: 2.2em;
padding: 0px 0px 19px 0px;
margin: -70px -90px 5px -90px;
text-align: center;
}

#content {
height: 220px;
padding: 80px 0px 0px 0px;
background-repeat: no-repeat;
background-position: right;
}

#border {
color: lightblue;
border-bottom: 8px double;
padding: 0px 0px 65px 0px;
margin: -85px -80px 10px -80px;
}

#border2 {
color: darkred;
border-bottom: 8px double;
padding: 0px 0px 65px 0px;
margin: 180px -80px 0px -80px;
}   

.formtext {
color: lightblue;
margin: -280px 0px 0px -50px;
}

.formtext2 {
color: lightblue;
margin: -10px 0px 0px -50px;
}

.formfield {
padding: 0px;
font-size: 1em;
width: 250px;
margin: 0px 0px 0px -50px;
color: black;
border: 2px darkred solid;
background-color: lightyellow;
border-radius: 4px;
}   

</style>
</head>
<body>

<div id="contentwrap">

<div id="heading">Online Order Event Form</div> 

<div id="border"></div>

<div id="content">

<div id="border2"></div>

<div class="formtext">Choose a show</div>
<select class="formfield" name="Show">


<div class="formtext">Select a number of tickets (max 4)</div>
<select class="formfield" name="Tickets">


<?php
    for( $i = 0; $i < count( $shows ); $i++ ) {

        echo "<option value=\"". $i ."\">". $shows[ $i ] 
            ." $". $prices[ $i ] ."</option>\n";
    }

?>


</select>

<div style="margin:160px 0px 80px -48px;">
    <input type="submit" value="Order Tickets" />
</div>

</form>



</div> <!-- ends div#contentwrap -->

</body>
</html>

1 个答案:

答案 0 :(得分:0)

您的代码包含<div>个标记但没有相应的结束</div>。 还有</form>没有对应的<form>

另外考虑使用缩进以便于阅读。

编辑:好的,所以这与你的CSS和margin的使用有关,可以尝试定位事物。