CSS13縦ナビ

見本



ブラウザ表示

<?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" />
<meta name="description" content="cssによる縦ナビゲーション" />
<meta name="keywords" content="css,ナビゲーション,リスト" />
<title>css13ナビゲーション</title>
<style type="text/css" media="screen,print">
*{
	padding: 0;
	margin: 0;
	border: none;
	list-style: none;
	text-decoration: none;
}

body{
	font-family: 
		"Hiragino Kaku Gothic Pro",
		"ヒラギノ角ゴ Pro W3",
		Meiryo, 
		"メイリオ", 
		Osaka, 
		"MS P Gothic", 
		"MS Pゴシック", 
		sans-serif;
	font-size: 16px;
}

ul{
	width:200px;
	height: auto;
	margin: 50px 0 0 50px;
	border-top: solid 1px #000000;
}

li{
	width: 200px;
	height: auto;
	padding: 10px 0 10px 0;
	border-bottom: solid 1px #000000;
	text-indent: 2em;
	background: #eeeeee;
}

li a{
	display: block;
	width: auto;
	height: auto;
	color: #000000;
}

li a:hover{
	color: #ff8800;
}

</style>
</head>
<body>
<ul>
<li><a href="#">メニューのリンク1</a></li>
<li><a href="#">メニューのリンク2</a></li>
<li><a href="#">メニューのリンク3</a></li>
<li><a href="#">メニューのリンク4</a></li>
<li><a href="#">メニューのリンク5</a></li>
</ul>

</body>
</html>