【发布时间】:2019-03-21 13:18:15
【问题描述】:
我正在重新制作学校的学生 Intranet 以进行评估,但我遇到了按钮问题。正如您在图片中看到的,在按钮链接之间的间隙中可以看到一条水平线。
发生这种情况有什么原因吗?如果有帮助,我已经附上了网站按钮部分的 CSS 和 HTML 代码。
CSS:
.button {
background-color:rgba(255, 255, 255, 0.5);
border:none;
width:auto;
height:auto;
border-radius:3px;
color:#ffffff;
font-size:16px;
cursor:pointer;
padding:15px;
z-index:3;
}
.button:hover {
color:#000000;
transition:.2s;
background-color:rgba(255, 255, 255, 0.8);
padding-left:18px;
padding-right:18px;
}
.button:active {
color:#000000;
}
.button:focus {
outline-color:gold;
}
HTML:
<div class="links">
<h2>Links</h2>
<a href="http://jhclibrary.weebly.com/" alt="JHC Library Website">
<button class="button">
Library Website
</button>
</a>
<a href="http://jhclibrary.weebly.com/research.html" alt="Research">
<button class="button">
Research
</button>
</a>
<a href="http://jameshargestcollege.wheelers.co/" alt="eBooks">
<button class="button">
eBooks
</button>
</a>
<a href="10.0.0.7" alt="Library Catalogue">
<button class="button">
Library Catalogue
</button>
</a>
<br><br>
<a href="http://studentintranet/Documents/SubjectBooklets/ElLink.html" alt="Subject Booklets">
<button class="button">
Subject Booklets
</button>
</a>
<a href="http://studentintranet/Documents/Options/ElLink.html" alt="Option Books">
<button class="button">
Option Books
</button>
</a>
</div>
感谢任何帮助。谢谢!
【问题讨论】: