ti ho messo 49% di larghezza perchè ci sono i bordi: le "celle" tornerebbero a capocodice:<html> <head> <meta http-equiv="Content-Type" content="text/html; charset=windows-1252"> <title>Nuova pagina 1</title> <style> body {margin: 0 auto} #container {width: 100%; border: 1 px solid red;} .testo1 {width: 49%; border: 1 px solid black; float: left;} .testo2 {width: 49%; border: 1 px solid black; float: left;} .testo3 {width: 49%; border: 1 px solid black; float: left;} .testo4 {width: 49%; border: 1 px solid black; float: left;} </style> </head> <body> <div id="container"> <div class="testo1">testo cella uno</div> <div class="testo2">testo cella due</div> <div class="testo3">testo cella tre</div> <div class="testo4">testo cella quattro</div> </div> </body> </html>
![]()