CSS19 横ナビ

見本



ソースコード

ブラウザ表示

<?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>css19</title>
<style type="text/css" media="screen,print">
body,ul,li,a{
	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;
	line-height: 1em;
}
ul{
	width: auto;
	height: 36px;
	margin: 50px 0 0 50px;
	overflow: auto;
	border-left: solid #000000 1px;
}
li{
	width: 180px;
	height: auto;
	float: left;
	border-right: solid #000000 1px;
	text-align: center;
	font-size: 1em;
}
li a{
	display: block;
	width: 180px;
	line-height: 36px;
	color: #000000;
	text-decoration: none;
}
li a:hover{
	background: #fafad2;
}
</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>