⌊ K™¦krizzna.web.id ⌉

Sekedar coretan seorang nyubi

How to Build a Basic CSS Layout

Posted on

How to Build a Basic CSS Layout

Article by Herman Drost

Designing without tables by using CSS layouts is fastbecoming the new standard on the Web because of thebenefits mentioned in my previous article. Web browsersused these days are now able to render web pagesproficiently. In this article I will endeavor to create abasic 2 column CSS layout which you can use for futuredesign projects.Here is the live web page of the basic CSS layout:http://www.isitebuild.com/css/css-layout.html1. Divide your page into sections – the <div id> tagsallows you to create distinct divisions on your web page.They are identified with a unique id. You can then add astyle (css selector) that specifically applies to the divof that id. Remember to include the DOCTYPE (to render yourpage accurately in the browsers) and meta tags (enablessearch engines to spider your pages).wrapper: is the div that wraps around all the other divslike a container for the page elements.header: defines the top banner of the pagemain: defines the main content of the pagenav: defines the navigation of the pagefooter: defines the footer and sub-navigation of the page<!DOCTYPE html PUBLIC “-//W3C//DTD XHTML 1.0Transitional//EN”"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd”><html xmlns=”http://www.w3.org/1999/xhtml”><html><head><title>How to Build a Basic CSS Layout</title><meta name=”Description” content=”How to Build a Basic CSSLayout” /><meta name=”Keywords” content=”css layout” /><meta http-equiv=”Content-Type” content=”text/html;charset=iso-8859-1″></head><body><div id=”wrapper”><div id=”header”></div><h1>Basic CSS Layout</h1><div id=”nav”></div><h2>Navigation</h2><div id=”main”></div><div id=”footer”></div></div></body></html>2. Create the CSS code – below is the CSS code that stylesthe page as a centered 2 column CSS layout with anavigation bar and a footer. The div#wrapper style createsthe centered box which acts as a container for the rest ofthe page content. The width: 80% rule sets the width of thediv. The background-color:#FFFFFF rule creates a whitebackground for the div. The margin-top: 50px andmargin-bottom: 50px rules create a space of 50 pixels forthe top and bottom margins for the div itself.The proper way to center a block-level element with CSS isto set margin-left: auto and margin-right: auto. Thisinstructs the browser to automatically calculate equalmargins for both sides, thus centering the div. The border:thin solid #000000 rule adds a border around the outer div.The rest of the CSS code styles the divs for the header,footer, nav, and main content.The div#header and div#footer styles set margins andpadding for those divs. In addition, div#header includesthe text-align: center rule to center the header text, anddiv#footer includes the border-top: thin solid #000000 ruleto create a border along the top edge of the div to replacethe horizontal rule above the footer in the table-basedlayout.The div#nav and div#main styles create the two columns inthe middle of the centered box. In the div#nav style, thefloat: left rule pushes the div to the left side of itsparent element (the wrapper div), and the width: 25% rulesets the div’s width to 25 percent of the parent element.With the nav div floated to the left and limited to a setwidth, it leaves room for the main div to move up to theright of the nav div, thus creating the two-column effect.The div#main style includes the margin-left: 30% rule tokeep the main text aligned in a neat column instead ofspreading out below the nav column. The main div’s leftmargin is set to a value slightly larger than the width ofthe nav div.<style type=”text/css”><!–body {background-color: #999999;font-size:12px;font-family:Verdana, Arial, Helvetica, sans-serif;}div#wrapper {width: 80%;background-color:#FFFFFF;margin-top: 50px;margin-bottom: 50px;margin-left: auto;margin-right: auto;padding: 0px;border: thin solid #000000;}div#header {padding: 15px;margin: 0px;text-align: center;}div#nav {width: 25%;padding: 10px;margin-top: 1px;float: left;}div#main {margin-left: 30%;margin-top: 1px;padding: 10px;}div#footer {padding: 15px;margin: 0px;border-top: thin solid #000000;}–></style>3. Create the side navigation menu – to build the left sidenavigation I use the normal CSS code for the differentlinks iea:link {text-decoration: none;}a:visited {text-decoration: none;}a:hover {text-decoration: underline;color: #FF0000;}a:active {text-decoration: none;}If links are placed elsewhere on the page they will inheritthe same properties as above..a blue link that hovers tored. What if you wish to create another set of links thatare a different color and on passing your mouse over themthey are underlined.4. Create the bottom navigation – to include this in the<div id=”footer”> section of the page, I use div#footer andcode each link accordingly. To make the list gohorizontally I use: display: inline;div#footer ul li{color : #000000;background-color : transparent;display: inline;}div#footer ul li a{color : #115EAC;background-color : transparent;text-decoration : none;}div#footer ul li a:hover{text-decoration : underline;}–>Now that I have finished creating my style sheet I want toshorten the code on page by linking it to my external stylesheet. Here’s how:4. Create an external style sheet – copy and paste all thecss code (without these tags: <style type=”text/css”><!—-></style>) into notepad and label it something like”style sheet”. Place this style sheet between the head tagsof your web page like this:<head><link rel=”stylesheet” href=”stylesheet.css”type=”text/css” /></head>This will reduce the code on your page so it will load fastplus the search engines can more easily spider your webpage.4. Add content to your page – after you have got your pagelooking correctly, you can add more content to it.Adjustments can easily be made to any style on the page (oryour whole site) by simply editing one style sheet.5. Upload your files – be sure to upload your web pages andstyle sheet to the root directory of your server.6. Validate your code – be sure to validate your xhtmlcode: http://validator.w3.org/ and css code:http://jigsaw.w3.org/css-validator/ and make correctionswhere necessary.7. Check browser compatibility and screen resolution -check that your page renders well in the popular browsers(IE6, NN7, Firefox)If you are beginning with CSS layouts, implement thenslowly by making small changes to your pages i.e. creatinga style sheet for your main headers and fonts only. As youbecome more familiar with CSS you may eventually build allyour future sites with CSS layouts.Resources:Basic CSS layouthttp://www.isitebuild.com/css/css-layout.htmlCSS Style Sheethttp://www.isitebuild.com/css/stylesheet.htmBenefits of CSShttp://www.isitebuild.com/css/index.htm

Herman Drost is the Certified Internet Webmaster (CIW)owner and author of http://www.iSiteBuild.com. AffordableWeb Site Design and Web Hosting. Subscribe to his

Share and Enjoy:
  • printfriendly How to Build a Basic CSS Layout
  • digg How to Build a Basic CSS Layout
  • delicious How to Build a Basic CSS Layout
  • facebook How to Build a Basic CSS Layout
  • yahoobuzz How to Build a Basic CSS Layout
  • twitter How to Build a Basic CSS Layout
  • googlebookmark How to Build a Basic CSS Layout
  • email link How to Build a Basic CSS Layout
  • linkedin How to Build a Basic CSS Layout
  • live How to Build a Basic CSS Layout
  • myspace How to Build a Basic CSS Layout
  • pdf How to Build a Basic CSS Layout
  • plurk How to Build a Basic CSS Layout
  • slashdot How to Build a Basic CSS Layout
  • technorati How to Build a Basic CSS Layout
  • tumblr How to Build a Basic CSS Layout
  • hackernews How to Build a Basic CSS Layout

Tags: , ,



HTML5 CSS3 Responsive Cross-everything

© krizzna.web.id 2012

Powered by Yahoo! Answers