Question

C'est mon code ce qui fonctionne bien, mais lorsque je change mon titre2 en "Prix de vente 25 $".Ceci est un exemple de texte.244 $", puis l'image du logo automatique change de position.Je ne veux pas que le logo change de position mais il doit rester à sa place et ne doit pas être affecté par le titre2Txt.Comment résoudre ce problème ?

 <div id="wrapper">
        <div id="mainContainer">
            <p class="copyrights" id="copyrights"></p>
            <div>
                <img id="Image_Car" src="http://i.share.pho.to/25a090ef_c.png" />
            </div>
                  <div id="headlineText">
            <p id="headline1Txt" >Sample bag1</p>
            <p id="headline2Txt" >Sale Price $25 </p>

        </div>
            <div id="disclaimer" >
               Details*
            </div>
              <div id="Image_logo">
                <img id="Imglogo" src="http://i.share.pho.to/93578bd4_o.png" />
            </div>

           <div >
           <button class="btn btn-primary" type="button"  id="ctaBtn"><div id="fadeIn" >  Learn More Now </div></button>

        </div>
    </div>


#Image_logo img
{
    position:relative;
    width:140px;
    height:30px;
    top:-3px;
left:390px;
}
</div>
Était-ce utile?

La solution

Tu as position: relative; sur #Image_logo img pourtant vous essayez de le positionner de la « manière absolue ».Essayez de changer votre CSS comme ceci :

#Image_logo img {
    position:absolute;
    width:140px;
    height:30px;
    top:40px;
    left:390px;
}

Autres conseils

I may not understand what you're asking, but I think the lack of a float is throwing you. Adding some css like this..

<style>
#Image_logo img {
    width:140px;
    height:30px;
}
#wrapper {
    float:left;
}
</style>

...should work. It should be in a separate .css file of course.

Try giving your #Image_logo img position: absolute instead of relative, then modify top, left etc. Then it should be always in the same place;

Licencié sous: CC-BY-SA avec attribution
Non affilié à StackOverflow
scroll top