復習(4)リスト Q22回答

Q22回答

<!DOCTYPE html>
<html lang="ja">
<head>
<title>Q22回答</title>
<link rel="stylesheet" href="css/q22.css">
</head>
<body>
<div id="nav">
<ul>
<li><a href="#">新着情報</a></li>
<li><a href="#">ニュース/お知らせ</a></li>
<li><a href="#">製品情報</a></li>
<li><a href="#">店舗案内</a></li>
<li><a href="#">会社案内</a></li>
</ul>
</div>
</body>
</html>


@charset "UTF-8"
body,div,ul,li,a,img {
  margin: 0;
  padding: 0;
}
body {
  font-size: 16px;
  font-family: 
    "Hiragino Kaku Gothic ProN",
    Meiryo,
    sans-serif;
}
ul {
  list-style: none;
  width: 180px;
  border-bottom: 1px dotted #1e90ff;
  margin: 30px 0 0 50px;
  padding: 3px 0;
}
a {
  widows: 180px;
  text-decoration: none;
  font-weight: bold;
  border-top: 1px dotted #1e90ff;
  padding: 10px 0 10px 30px;
  display: block;
  background: url(../img/btn2.jpg) no-repeat left;
}

a:hover {
  color: #ff8c00;
}