Salve a tutti,
quello che vorrei è una immagine, seguita da una frase, seguita da un campo teso, seguito da un button : il tutto su una riga.

Ho provato così:

codice:
<html>
    <head>
        <style type="text/css">
            img{
                float:left;
                height: 50px;
                width: 50px;
            }
            form{
                float:left;
                height:50px;
                vertical-align:middle;
            }
            #divLabel{
                text-align:center;
                height:50px;
                width:150px;
                float:left;
            }
        </style>

    </head>
    <body>
        [img]img.png[/img]
        <div id="divLabel">Qualche testo breve</div>
        <form action="" >
            <input type="text" />
            <input type="button" />
        </form>
    </body>
</html>
Il problema è che non riesco ad allineare l'immagine con il resto: ad esempio la frase compare in alto e non a metà altezza dellìimmagine. Idem per gli elementi del form...

Potete aiutarmi ?

Ciao