Hi,
in my HTML test page I've tried to set a top border when I hover a
link. It does work in Firefox and Opera. Is internet explorer capable
to do that?
The HTML:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
        "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd";>

<html xmlns="http://www.w3.org/1999/xhtml"; xml:lang="en" lang="en">
<head>
        <meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>

        <title>new layout</title>
        <link href="base.css" media="screen" rel="Stylesheet" type="text/css" />
</head>

<body>
<div>
<a href="#">posti</a>
</div>
                        
</body>
</html

the CSS:
a {
        text-decoration: none;
        color: #FFAE00;
        margin-top: 3px;
        border-top: 3px solid green;
}

a:hover {
        color: red;
        border-left: 3px solid blue;
}

and if IE is once again handicapped, is there an hack to get rid of it?
Enrico

-- 
"The only thing necessary for the triumph of evil
is for good men to do nothing"
 Edmund Burke
______________________________________________________________________
css-discuss [EMAIL PROTECTED]
http://www.css-discuss.org/mailman/listinfo/css-d
IE7b2 testing hub -- http://css-discuss.incutio.com/?page=IE7
List wiki/FAQ -- http://css-discuss.incutio.com/
Supported by evolt.org -- http://www.evolt.org/help_support_evolt/

Reply via email to