好吧所以问题很简单,但我不确定如何解决它。
创建此代码后,菜单旁边会出现小点。
查看图片以了解更多信息。
代码
$ bash cmpdates.sh 20160401 <dat/ndate.csv
123422016
123422016
123422016
123422016
123422016
129212016
#MenuID li {
color: white;
display: inline-block;
list-style: none;
background-color: rgba(255, 146, 0, 0.5);
font-size: 20px;
position: relative;
left: 220;
top: -48;
font-weight: bold;
width: 10%;
text-align: center;
border: 1px solid black;
}
#MenuID li:hover {
background-color: rgba(255, 255, 0, 0.5);
}
#MenuID li a {
text-decoration: none;
color: white;
}
答案 0 :(得分:2)
您错过</a>
之前的</li>
并使用min-width
中的li
,此外您还缺少left
和top
中的单位
#MenuID li {
color: white;
display: inline-block;
list-style: none;
background-color: rgba(255, 146, 0, 0.5);
font-size: 20px;
position: relative;
left: 220px;
/* top: -48px; commented so you can see demo*/
font-weight: bold;
min-width: 10%;
text-align: center;
border: 1px solid black;
}
#MenuID li:hover {
background-color: rgba(255, 255, 0, 0.5);
}
#MenuID li a {
text-decoration: none;
color: white;
}
&#13;
<ul id="MenuID">
<li> <a href="index.html"> Home</a>
</li>
<li> <a href="index.html"> Forum</a>
</li>
<li> <a href="index.html"> Website</a>
</li>
</ul>
&#13;
答案 1 :(得分:1)
您永远不会在HTML中关闭<a>
:
<ul id="MenuID">
<li> <a href="index.html"> Home </a></li>
<li> <a href="index.html"> Forum</a></li>
<li> <a href="index.html"> Website</a></li>
</ul>