ウェブ学のすすめ

Study of Web Design & Programing

positionを使ったレイアウト

ポイント

  • 配置したいものがabsolute
  • それを囲むものがrelative

positionを使ったレイアウト例

positionを使ったレイアウト - jsdo.it - share JavaScript, HTML5 and CSS

<?xml version="1.0" encoding="UTF-8"?>
<!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="ja" lang="ja">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<meta http-equiv="Content-Style-Type" content="text/css" />
<title>floatを使ったレイアウトver2</title>
<style type="text/css">
* {
    margin: 0;
    padding: 0;
}

body {
    color: #fff;
    background-color: #ccc;
    font-size: 1.0em;
    font-family:
	"ヒラギノ角ゴ Pro W3", 
	  "Hiragino Kaku Gothic Pro", 
	  "メイリオ", 
	  Meiryo, 
	  Osaka, 
	  "MS Pゴシック", 
	  "MS PGothic", 
	  sans-serif;
}

#container {
    background-color: #fff;
    width: 800px;
    height: auto;
    margin: 0 auto;
    padding: 10px;
    overflow: auto;
}

#header {
    background-color: #a3bed5;
    width: auto;
    height: 100px;
    margin: 0 0 10px;
    position: relative;
}

#header_inner {
    position: absolute;
    right: 20px;
    top: 70px;
    width: auto;  
}

#header_inner li {
    display: inline;
    margin: 0 0 0 10px;
}

#header_inner li a:link {
    text-decoration: none;
}

#header_inner li a:hover {
    text-decoration: underline;
}

h1 {
    color: #fff;
    font-size: 1.6em;
    font-family: serif;
    padding: 20px 0 0 20px;
}

#content {
    background-color: #dcd78a;
    width: 540px;
    height: 290px;
    float: right;
    margin: 0 0 10px;
    padding: 10px;
}

#sidebar {
    float: left;
    width: 200px;
    height: auto;
    padding: 10px 10px 0;
    background-color: #9cc56e;
}

#sidebar li {
    height: 80px;
    margin: 0 0 10px;
}

#sidebar ul {
    list-style-type: none;
}

#sidebar img {
    border: none;
}

#footer {
    clear: both;
    background-color: #e0b9d2;
    width: auto;
    height: 50px;
} 

address {
  text-align: center;
  font-style: normal;
  padding: 15px 0 0;
}
</style>
</head>
<body>
<div id="container">
<div id="header">
<h1>ここにサイトタイトルが入る</h1>
<div id="header_inner">
<ul>
<li><a href="#">このサイトについて</a></li>
<li><a href="#">お問い合わせ</a></li>
<li><a href="#">サイトマップ</a></li>
</ul>
</div>
</div>
<div id="wrapper">
<div id="content">
<h2>ここに見出しが入る</h2>
<p>ここに本文が入る</p>
</div>
<div id="sidebar">
<ul>
<li><img src="http://jsrun.it/assets/j/p/x/6/jpx6R.gif" alt="" width="200px" height="80px" /></li>
<li><img src="http://jsrun.it/assets/j/p/x/6/jpx6R.gif" alt="" width="200px" height="80px" /></li>
<li><img src="http://jsrun.it/assets/j/p/x/6/jpx6R.gif" alt="" width="200px" height="80px" /></li>
</ul>
</div>
</div>
<div id="footer">
<address>ここに連絡先のテキストが入る</address>
</div>
</div>
</body>
</html>

Valid XHTML 1.0 Transitional正当なCSSです!