Chcę wykombinować, aby bloki <div> znajdowały się obok siebie, ale również nie miały przerw pod sobą. Mam taki kod:
Ma ktoś może jakieś pomysły?
<html> <head> <style type="text/css"> .sds { width:40px; height:20px; border:2px solid black; position:relative; left:10px; } .aaa { width:40px; height:20px; border:2px solid black ; position:relative; left:10px; top:5px;} .ccc { width:40px; height:20px; border:2px solid black ; position:relative; left:10px; top:10px; } .ddd { width:40px; height:20px; border:2px solid black ; position:relative; left:60px; top:-70px; } .eee { width:40px; height:20px; border:2px solid black ; position:relative; left:60px; top:-60px; } .eeef { width:40px; height:20px; border:2px solid black ; position:relative; left:110px; top:-120px; } </style> </head> <body> </body> </html>