Visualizzazione dei risultati da 1 a 3 su 3
  1. #1

    quadrato 3x3: lista o div?

    Salve ragazzi!
    Come posso creare un quadrato 3x3?
    Siccome è un menu sarebbe meglio che fosse una lista o i div vanno bene?
    Mi date una mano per favore?
    il quadrato dovrebbe avere le dimensioni di 450px e ogni sotto quadrato di 150px.
    Dovrebbe venire una cosa così più o meno: http://www.ecmedia.it

    nothing is absolute, but everything is relative | My web site http://marcoronchese.net | My web blog http://blog.marcoronchese.net

  2. #2
    Utente di HTML.it
    Registrato dal
    Feb 2008
    Messaggi
    663
    Questa potrebbe essere una soluzione:
    codice:
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml" lang="it" xml:lang="it">
    <head>
    <title></title>
        <style type="text/css">
        * {
        margin:0;
        padding:0;
        }
        html {
        font-size:100%;
        }
        body {
        text-align:center;
        font: 1em Arial, Verdana, Tahoma, sans-Serif;
        }
        ul {
        margin:auto;
        width:450px;
        height:450px;    
        }
        li {
        display:inline;
        list-style:none;    
        }
        li a {
        display:block;
        float:left;
        width:150px;
        height:150px;
        color:#fff;
        line-height:9em;
        }
        .li1 {
        background:red;
        }
        .li2 {
        background:green;
        }
        .li3 {
        background:blue;
        }  
        </style>
    </head>
    <body>
    <ul>
    	[*]link 1[*]link 2[*]link 3[*]link 4[*]link 5[*]link 6[*]link 7[*]link 8[*]link 9[/list]
    </body>
    </html>
    Prova a testarlo. Le classi sono solo per vedere i colori dei blocchi.

  3. #3
    grazie mille! molto brao, veramente!

    perfetto!
    nothing is absolute, but everything is relative | My web site http://marcoronchese.net | My web blog http://blog.marcoronchese.net

Permessi di invio

  • Non puoi inserire discussioni
  • Non puoi inserire repliche
  • Non puoi inserire allegati
  • Non puoi modificare i tuoi messaggi
  •  
Powered by vBulletin® Version 4.2.1
Copyright © 2025 vBulletin Solutions, Inc. All rights reserved.