syntax for layouit using DIV + CSS?
How can I get a master page for asp.net with 3 sections using divs to split the window into a left pane for a tree view navigation. The main window to the right will be divided into a banner type top div and a main window div under it for the main content window where I wan开发者_JAVA技巧t child pages loaded in the master page implementation.
can someone give me a syntax example?
I'd probably go for something like this:
CSS:
body {
margin: 0;
padding: 0;
}
div#left {
display: inline;
float: left;
height: 100%;
width: 30%;
background: #A00;
}
div#top_right {
display: inline;
float: right;
height: 30%;
width: 70%;
background: #000;
}
div#bottom_right {
display: inline;
float: left;
height: 70%;
width: 70%;
background: #CCC;
}
HTML:
<div id="left">
</div>
<div id="top_right">
</div>
<div id="bottom_right">
</div>
Put in background colours just to tell them apart, good luck!
Building upon Stann0rz answer, here is what a master page and content view could look like. This example was done using ASP.NET MVC but would apply very closely to traditional ASP.NET Webforms.
MASTER PAGE:
<%@ Master Language="C#" Inherits="System.Web.Mvc.ViewMasterPage" %>
<!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">
<style type="text/css">
body {
margin: 0;
padding: 0;
}
div#left {
display: inline;
float: left;
height: 100%;
width: 30%;
background: #A00;
}
div#top_right {
display: inline;
float: right;
height: 30%;
width: 70%;
background: #000;
}
div#bottom_right {
display: inline;
float: left;
height: 70%;
width: 70%;
background: #CCC;
}
</style>
</head>
<body>
<div id="left">
<ul>
<li>Navigation Item 1</li>
<li>Navigation Item 2</li>
</ul>
</div>
<div id="top_right">
<span>Tab 1</span>
<span>Tab 2</span>
</div>
<div id="bottom_right">
<asp:ContentPlaceHolder ID="BottomRightContent" runat="server">
</div>
</body>
</html>
CONTENT VIEW:
<%@ Page Title="" Language="C#" MasterPageFile="~/Views/Shared/Site.Master" Inherits="System.Web.Mvc.ViewPage<dynamic>" %>
<asp:Content ID="Content1" ContentPlaceHolderID="BottomRightContent" runat="server">
[Bottom-right content goes here]
</asp:Content>
精彩评论