【发布时间】:2011-10-15 12:57:05
【问题描述】:
这里是html:
<body>
<div id="container">
<div id="banner">
</div>
<div id="navigation">
<a href="index.html"><img src="images/front_end/nav_home.png" alt="Home" /></a><a href="portfolio.html"><img src="images/front_end/nav_portfolio.png" alt="Portfolio" /></a><a href="about.html"><img src="images/front_end/nav_about.png" alt="About" /></a><a href="contact.html"><img src="images/front_end/nav_contact.png" alt="Contact" /></a>
</div>
<div id="content">
<div id="title">
Contact
</div>
<form id="emailform" method="POST" action="">
<label for="name">Name: </label><input class="inputs" type="text" name="name" />
<p><label for="email">Email: </label><input class="inputs" type="text" name="email" /></p>
<p><label for="phone">Phone: </label><input class="inputs" type="text" name="phone" /></p>
<p><label for="message">Your Message: </label><textarea id="largemessage" name="message"></textarea></p>
<input type="submit" id="submit" value="Send Message"/>
</form>
</div>
和 CSS:
body {
background-color: #111014;
background-image: url("images/front_end/bg.png");
background-repeat: repeat-x;
}
#container {
height: auto;
width: 1000px;
margin-left: auto;
margin-right: auto;
}
#banner {
margin-top: 45px;
margin-bottom: 38px;
height: 68px;
width: 1000px;
background-image: url("images/front_end/bannerbg.png");
}
#navigation {
height: 36px;
width: 1000px;
margin-left: 49px;
}
#content {
background-image: url("images/front_end/contentbg.png");
background-repeat: repeat-y;
height: 100%;
width: 1000px;
padding-left:80px;
padding-right:60px;
padding-bottom: 20px;
margin-bottom: -8px;
}
#title {
height: 90px;
width: 542px;
padding-left: 60px;
padding-top: 36px;
background-image: url("images/front_end/titlebg.png");
background-repeat:no-repeat;
font-family: tahoma;
font-size: 2.5em;
color: #dad8df;
margin-left: -80px;
}
#emailform {
color: #dad8df;
font-family: tahoma;
}
.inputs {
float: right;
margin-right: 675px;
width: 200px;
font: .9em tahoma;
}
#largemessage {
float: right;
clear: both;
margin-right: 175px;
width: 700px;
height: 150px;
resize: none;
font: .9em tahoma;
}
#submit {
margin-right: 175px;
clear: both;
float: right;
}
以及正在发生的事情的图片:
这里有一张图片的链接:The Picture
我意识到我确实给了你一堆东西来整理,但我看了很多遍,就是想不通。
提前感谢您的帮助。
【问题讨论】: