jeremy wrote:
> Hey all..
> 
> I an having some trouble making these buttons show up in IE. 
> http://jeremyzilar.net/library/
> 

Neither in IEWin nor IEMac show these links.

When I am not completely wrong, this design relies on the inline level 
of the empty links. Not that empty links are a good idea.

Generally, elements at inline level that don't show up in such a case 
might profit from being inline-block in IE in standards mode:

#center {font-size: 1em; line-height: 1.5;}

.view {
        margin: 0 0 0 5px;
        padding: 0 20px;
        background: transparent url("view.gif") no-repeat 50% 50%;
        text-decoration:none;
        }


* html .view{ /* for both IE Win and IE Mac */
        display: inline-block;
        width:1px; /* for IEMac*/
        height:1em;
        }       

At least I hope so. The inline bugs in IE/Win not well documented.

Ingo

-- 
http://www.satzansatz.de/css.html
______________________________________________________________________
css-discuss [EMAIL PROTECTED]
http://www.css-discuss.org/mailman/listinfo/css-d
List wiki/FAQ -- http://css-discuss.incutio.com/
Supported by evolt.org -- http://www.evolt.org/help_support_evolt/

Reply via email to