Re: [css-d] CSS Tooltips

2006-07-27 Thread Christian Heilmann
> It sure did, thats wonderful :) How so? What about people that don't have your stylesheet or don't have any CSS at all? There is a perfectly good attribute for additional information that does not fit the normal link content - the title. And if you want to go nuts on styling this information t

Re: [css-d] CSS Tooltips

2006-07-27 Thread Scott Wilcox
It sure did, thats wonderful :) Thank you! Els wrote: > Scott Wilcox wrote: > > >> I know IE has issues with :hover on anything but "a" elements, >> but using the following snippet: >> >> a.info { >>position: relative; >>z-index: 20; >>text-decoration: none; >> } >> a.info:hover {

Re: [css-d] CSS Tooltips

2006-07-27 Thread Els
Scott Wilcox wrote: > I know IE has issues with :hover on anything but "a" elements, > but using the following snippet: > > a.info { >position: relative; >z-index: 20; >text-decoration: none; > } > a.info:hover { >z-index: 25; > } > a.info span{ >display: none; > } > a.info:hov

[css-d] CSS Tooltips

2006-07-27 Thread Scott Wilcox
hey folks. I know IE has issues with :hover on anything but "a" elements, but using the following snippet: a.info { position: relative; z-index: 20; text-decoration: none; } a.info:hover { z-index: 25; } a.info span{ display: none; } a.info:hover span { display: block;