line mittel CSS
- 
					
					
					
					
 ich will das ein <div> als linie angezeigt wird <div style="position:absolute; top:50px; left:50px; width:100px; 
 height:0px;background-color:#000000; border-style:solid;
 border-width:1px"> </div>aber leider tut es nicht. es wird eine dicke line angezeigt ????? woran liegt es Danke im voraus 
 
- 
					
					
					
					
 lass den Rahmen(Border) weg und gib als Höhe(Height) 1Pixel an... 
 Die Farbe der Linie ergiebt sich aus der Hintergrundfarbe...CODE: <div style="position:absolute; top:50px; 
 left:50px;
 width:100px;
 /*so sollte es gehen*/
 height:1px;
 background-color:#000000; </div>