当我在我.sidebar
的 CSS 中将填充设置到左侧或在.sidebar td
.
我想要这里的填充,但我希望边框一直穿过,但每次我添加填充/边距时它都会随着文本移动。
CSS
.sidebar {
float: right;
padding-left: 20px;
padding-top: 10px;
padding-bottom: 0px;
margin-left: 865px;
height: inherit;
border: groove;
border-color: #eeeeee;
border-radius: 10px;
margin-top: -265px;
position: fixed;
font-size: 15px;
}
.sidebartda {
border: 1 px solid;
display: table;
height: 40px;
width: 200px;
border-color: #D6D6D6;
border-left-style: none;
border-right-style: none;
border-top-style: none;
margin-bottom: -1px;
margin-top: 10px;
}
.sidebartda:link {
color: #eeeeee;
}
HTML
<div class="sidebar">
<table>
<tr>
<td><a href="Develop.aspx#FreeAPI">Free API</a></td>
</tr>
<tr>
<td><a href="Develop.aspx#ProAPI">Pro API</a></td>
</tr>
<tr>
<td><a href="Develop.aspx#Platform">Platform</a></td>
</tr>
</table>
除了其中一个页面上的 2 个随机链接外,我的链接颜色似乎也不起作用。有小费吗?