需要一些关于如何像通常网站一样设置布局的帮助。
例如:http ://www.rachaelray.com/food.php
这个网站的内容似乎就在白色大盒子的中心,背景是浅蓝色。
我的网站会简单得多。
我真的不知道如何为我的母版页设置这样的(上面的网站)布局。
以下是我到目前为止所做的:-
<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
<title></title>
<asp:ContentPlaceHolder id="head" runat="server">
<style type="text/css">
#main
{
}
.left
{
margin:0 auto;
float:left;
width:20%;
}
.right
{
margin:0 auto;
float:right;
width:20%;
}
.content
{
width:100%;
}
.footer
{
padding:5px;
background:black;
color:white;
}
.wrapper
{
margin: 0 auto;
width: 700px;
}
.auto-style1 {
width: 466px;
image-orientation:auto;
}
.auto-style2 {
width: 466px;
height: 23px;
}
.auto-style3 {
width: 100%;
border: 1px solid #000000;
}
</style>
</asp:ContentPlaceHolder>
</head>
<body>
<form id="form1" runat="server">
<div id="left" class="left" > </div>
<div id="cont" class="wrapper">
<table class="content">
<tr>
<td class="auto-style1">
<asp:Image ID="Logo_MaduDTrading" runat="server" ImageUrl="~/Images/BeforeLogin/Logo_MaduDTrading.jpg" />
</td>
</tr>
<tr>
<td class="auto-style2">
</td>
</tr>
<tr>
<td class="auto-style1">
<asp:ContentPlaceHolder id="ContentPlaceHolder1" runat="server">
</asp:ContentPlaceHolder>
</td>
</tr>
<tr>
<td class="auto-style1">
</td>
</tr>
<tr>
<td class="auto-style1">
</td>
</tr>
</table>
</div>
<div id="right" class="right"></div>
</form>
</body>
</html>
有什么想法/建议吗?
提前谢谢你。