PS: リンクの上にカーソルを置いたときにバーをよく見ると、右端の数ピクセルが黒のままです。それはなぜですか、どうすれば修正できますか?
現在のナビゲーション バーのコードは次のとおりです。
HTML:
<body>
<div class="navbar">
<a href="home.html" id="current">-home</a>
<a href="about.html">about</a>
<a href="store.html">store</a>
<a href="contact.html">contact</a>
</div>
</body>
CSS:
.navbar{
width: 75%;
background-color: black;
margin-left: auto;
margin-right: auto;
margin-top: 15px;}
.navbar a:link, a:visited{
background-color: black;
color: white;
text-decoration: none;
text-transform: uppercase;
border-right: 2px solid white;
font-weight: bold;
font-family: verdana;
font-size: 37px;
text-align: center;
padding-left: 5px;
padding-right: 5px;}
.navbar a:hover, a:active, a:focus{
background-color: #4A4A4A;
text-decoration: underline;}
#current a:link, a:visited{
background-color: red;}
コードからわかるように、ホーム リンクの色を赤に設定しようとしています。しかし、これは明らかにうまくいきませんでした。どうすればいいですか?