爲什麼我的鏈接在我嘗試使它們處於浮動狀態的範圍內時變爲禁用狀態?css - 浮點數右鍵禁用鏈接
HTML:
<span id="spnLoginRegister">
<a href="login.htmls" type="text/html">Login</a>
|
<a href="register.html" type="text/html">Register</a>
</span>
CSS:
#spnLoginRegister{
position: relative;
right: 0px;
font-size: 20px;
margin-top: -10px;
}
- 或 -
#spnLoginRegister{
float: right;
font-size: 20px;
margin-top: -10px;
}
這些CSS方法均禁用鏈接。然後我刪除了float: right;
部分,鏈接工作得很好。我覺得解決方案非常簡單,但我只是沒有看到它。
這裏是鏈接的網站:http://friendshipodyssey.com/
不知怎的,它適用於我 - http://jsfiddle.net/nX6r8/ – JunM
與您的代碼沒問題。 – Farzad