| 
 Posted by Els on 07/12/07 08:31 
In article <1184227138.776100.170170@22g2000hsm.googlegroups.com>, 
 marss <marss.ua@gmail.com> wrote: 
 
> Jukka K. Korpela wrote: 
>  
> > The simple way is to set a bottom or top border for some "real" element, 
> > e.g. 
> > 
> > <div style="border-top: solid 1px black">...</div> 
>  
> I simplified above example for clarity and was smarted for it :(. 
> Actually I need a horizontal (black) line 1 pixel thick with a (red) 
> dot on one of its ends. 
> Something like this: 
> <div style="border-top: solid 1px black;border-left: solid 1px red"></ 
> div> 
> But it does not work. 
 
 
<div style=" 
   border-left:1px solid red; 
   background:black; 
   height:1px; 
   overflow:hidden;"> 
</div> 
 
I don't understand the 1px dot though - it's hardly noticeable.. 
 
--  
Els                     http://locusmeus.com/
 
[Back to original message] 
 |