is there a known problem with <a> tag in FF?
i try to do somthing like this:
Code: Select all
div#most
{
position:absolute;
margin-top:155px;
background-position:right;
min-height:205px;
*min-height:225px;
padding:5px;
font-size:small;
}
<div id='most'>
<?php
echo "<a href='index.php'>aaa</a>";
?>
</div
only a regular text , the link doesnt work.
this problem happens only in firefox.
i noticed that when i delete this rows:
margin-top:155px;
min-height:205px;
*min-height:225px;
it works fine, but this rows are necessary..