与CSS定位链接?

时间:2016-03-08 19:03:59

标签: html css hyperlink

我有以下HTML代码:

<div class="impressum">
    <a class="impressumstyle" href="https://www.google.de/?gws_rd=ssl">Impressum</a>       
</div>

在我的CSS文件中:

.impressum {
position: relative;
left: 20px;
top: 275px;
background: transparent;
text-align: left;}

.impressumstyle {
font-family: Verdana;
font-style: normal;
font-weight: bold;
font-size: 16px;
color: #fff;
text-decoration: none;}

.impressumstyle:hover {
color: #8d8d8d;}

我的问题是,当我使用.impressum中的top值时,该链接不再起作用。并且它不再改变它的颜色......问题出在哪里? 谢谢。

0 个答案:

没有答案