On 11/30/06, Scott Haneda <[EMAIL PROTECTED]> wrote:
> Friend of mine is doing as so:
> /* CSS Rollovers */
> #contact{
>     height: 28px;
>     width: 56px;
>     overflow: hidden;
>     background: url(btn_Contact.gif) top left no-repeat;
>     display: block;
> }
> #contact:hover{
>     background-position: bottom left;
> }

1) Does #contact refer to an A element?
   The hover pseudoclass is only supported on A elements in IE6.

2) Does #contact have some default text content to display is CSS is
broken/disabled?
   To hide the text content when displaying an image simply add
           text-indent: -9000px;
   to the #contact block.

dcm
______________________________________________________________________
css-discuss [EMAIL PROTECTED]
http://www.css-discuss.org/mailman/listinfo/css-d
IE7 information -- 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