Bruno Fassino wrote:

> On Sun, Mar 30, 2008 at 5:38 PM, David Laakso wrote:
> > What kills the the image border-bottom (it is adjacent to the top right
> >  side of the linked images, and is difficult to see)?
> >  Targeting selector is:
> >  *:first-child+html .caption a img  { float:left;  }
> >  <http://chelseacreekstudio.com/ca/cssd/dl/>
> 
> I would try giving them a 10px right margin. Just to IE7 if it's the
> only one with the problem:
> *:first-child+html .caption a img  { margin-right: 10px;  }
> Don't know of this may break something else.
> 
> Bruno
> 
> -- 
> Bruno Fassino http://www.brunildo.org/test


Hacking is dangerous. Since the xml declaration proceeds the doctype. This hack

*:first-child+html

will target Opera 2.6 and earlier. Plus it is targeting IE8 [1]. May I suggest 
this. :-)

*first-child+html/*/*/ .caption a img { margin-right: 10px; }


[1] <http://css-class.com/test/bugs/ie/ie-hacks.htm>


Alan

http://css-class.com/test/


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

Reply via email to