Jump to content
  • 0

шаблон слоев


sc@r@bey
 Share

Question

посмотрите нашел универсальный шаблон слоев можно ли его усовершенствовать?

<!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" xml:lang="en" lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<style type="text/css">

#container {
margin: 0px auto;
padding: 0px;
width: 800px; /* width of the layout -- can be set to any value including percentages */
overflow: hidden;
}

#header{
padding : 0px;
margin: 0px;
width: 100%;
overflow: hidden;
}

#navigation
{
margin: 0px;
padding: 0px;
width: 100%;
overflow: hidden;
}

#sidebar-right {
float: right;
width: 220px; /* width of the right sidebar -- can be set to any value including percentages */
margin: 0px;
padding: 0px;
overflow: hidden;
}

#sidebar-left {
float: left;
width: 220px; /* witdh of the left sidebar -- can be set to any value including percentages */
margin: 0px;
padding: 0px;
overflow: hidden;
}

#content {
margin: 0px;
padding: 0px;
height: 1%; /* IE6 hack... it's very minor, though */
overflow: hidden;
}

#content-inner
{
width: 100%;
overflow: hidden;
}

#footer{
clear: both;
margin: 0px;
padding: 0px;
width: 100%;
overflow: hidden;
}

</style>
<title>Sample Layout</title>
</head>
<body>
<div id="container">
<div id="header">
HEADER
</div>
<div id="navigation">
NAVIGATION
</div>
<!-- not rendering the sidebar-a div will cause the content div to fill the space left by the sidebar-a div -->
<div id="sidebar-right">
SIDEBAR A
</div>
<!-- not rendering the sidebar-b div will cause the content div to fill the space left by the sidebar-b div -->
<div id="sidebar-left">
SIDEBAR B
</div>
<div id="content"><div id="content-inner">
CONTENT
</div></div>
<div id="footer">
FOOTER
</div>
</div>
</body>
</html>

Link to comment
Share on other sites

2 answers to this question

Recommended Posts

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

 Share

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue. See more about our Guidelines and Privacy Policy