Firefox Border Radius Not Showing

Posted by Harry on Stack Overflow See other posts from Stack Overflow or by Harry
Published on 2010-06-01T08:41:30Z Indexed on 2010/06/01 8:43 UTC
Read the original article Hit count: 288

Filed under:
|

I am using the following css

#helper{
position:absolute;
bottom:0;
width:100%;
}

#key{
width:950px;
margin:0 auto;
z-index:2;
-moz-border-radius-topleft:8px;
-moz-border-radius-topright:8px;
}


<-- inside body -->
<div id="helper">
<div id="key">SHould be rounded top corners?</div>
</div>

Yet in Firefox it is not showing after refresh. Any ideas where should I be looking first? Thanks

© Stack Overflow or respective owner

Related posts about rounded

Related posts about css-borders