日期:2014-05-17 浏览次数:20584 次
<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="Index.aspx.cs" Inherits="Web.Index" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" >
<head runat="server">
<title>title>
<link rel="stylesheet" type="text/css" href="CSS/Index.css" />
<script type="text/javascript" src="Scripts/Index.js"></script>
</head>
<body>
<form id="form1" runat="server">
<div id="divHead">...Head...</div>
<div id="divBody">
<div id="divNav">Nav</div>
<div id="divStretch"><img src="Images/switch_left.gif" id="ImgArrow" alt="" /></div>
<div id="divMain">body</div>
</div>
</form>
</body>
</html>
html,body{padding:0; margin:0; font-family:宋体; font-size:14px; color:#333333;}
#divHead { height:100px; width:800px; }
#divBody { height:100%; width:800px; }
#divNav, #divStretch, #divMain{ height:100%; float:left;}
#divNav {height:100%; width:200px; background-color:Yellow;}
#divStretch {height:500px; width:6px; background-color:Red; }
#divMain { height:100%; width:100%; background-color:Green; }