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

    Fondo che si sposta per errore

    http://demo.stamyna.com/test.asp

    con IE, allargando e stringendo la pagina il fondo si scompone e ricompone.

    Questo l'HTML
    <body>
    <div id="bg">
    <div id="sx"></div>
    <div id="dx"></div>
    </div>
    </body>


    Questo il CSS
    * { margin: 0px; padding: 0px; }

    body {
    text-align: center;
    font-family: Arial, Helvetica, sans-serif;

    }

    #bg {
    text-align: center;
    }

    #sx {
    width: 50%;
    height: 710px;
    float: left;
    display: inline;
    background-image: url(../immagini/bg_sx.gif);
    background-repeat: repeat-x;
    }

    #dx {
    width: 50%;
    height: 710px;
    float: left;
    display: inline;
    background-image: url(../immagini/bg_dx.gif);
    background-repeat: repeat-x;
    }

    C'è bisogno di qualche hack?
    Grazie
    Enrico Frison
    El signore ghe da e suche a chi che no ga i porsei!

  2. #2
    Soluzione trovata, se può servire...
    #sx {
    width: 50%;
    height: 710px;
    float: left;
    display: inline;
    background-image: url(../immagini/bg_sx.gif);
    background-repeat: repeat-x;
    }

    #dx {
    height: 710px;
    margin-left: 50%;
    background-image: url(../immagini/bg_dx.gif);
    background-repeat: repeat-x;
    }
    Enrico Frison
    El signore ghe da e suche a chi che no ga i porsei!

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.