web-dev-qa-db-fra.com

Comment mettre une image côte à côte

J'essaie de mettre ces deux icônes "hyperliées" l'une à côté de l'autre, mais je n'arrive pas à le faire. Comme vous pouvez le voir, l'icône Twitter passe à la ligne suivante .. (ils sont tous les deux hyperliens vers leur site Web respectif)

enter image description here

HTML

<div class="nav3" style="height:705px;">
    <div id="icons"><a href="http://www.facebook.com/"><img src="images/facebook.png"></a>
    </div>
    <div id="icons"><a href="https://Twitter.com"><img src="images/Twitter.png"></a>
    </div>
</div>

CSS

.nav3 {
    background-color: #E9E8C7;
    height: auto;
    width: 150px;
    float: left;
    padding-left: 20px;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 12px;
    color: #333333;
    padding-top: 20px;
    padding-right: 20px;
}

#icons{position:relative; 
    width: 64px; 
    height: 64px; 
   }

    #icons a:hover {
     background: #C93;
        display: block;

 }

Comment puis-je aligner les uns à côté des autres?

Merci d'avance

16
user2320517

Vous n'avez pas besoin des div.

HTML:

<div class="nav3" style="height:705px;">
    <a href="http://www.facebook.com/" class="icons"><img src="images/facebook.png"></a>
    <a href="https://Twitter.com" class="icons"><img src="images/Twitter.png"></a>
</div>

CSS:

.nav3 {
    background-color: #E9E8C7;
    height: auto;
    width: 150px;
    float: left;
    padding-left: 20px;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 12px;
    color: #333333;
    padding-top: 20px;
    padding-right: 20px;
}

.icons{
    display:inline-block;
    width: 64px; 
    height: 64px; 
   }

 a.icons:hover {
     background: #C93;
 }

Voir ce violon

14
jao

Remplacez div par span. Et espacez les icônes à l'aide de &nbsp; HTML

 <div class="nav3" style="height:705px;">
 <span class="icons"><a href="http://www.facebook.com/"><img src="images/facebook.png"></a>
 </span>&nbsp;&nbsp;&nbsp;
 <span class="icons"><a href="https://Twitter.com"><img src="images/Twitter.png"></a>
 </span>
 </div>

CSS

.nav3 {
background-color: #E9E8C7;
height: auto;
width: 150px;
float: left;
padding-left: 20px;
font-family: Arial, Helvetica, sans-serif;
font-size: 12px;
color: #333333;
padding-top: 20px;
padding-right: 20px;
}

.icons{
display:inline-block;
width: 64px; 
height: 64px; 
}

 a.icons:hover {
 background: #C93;
 }

span ne rompt pas la ligne, div le fait.

6
Optimus Prime

Regarde ça. Utilisez simplement float et débarrassez-vous de relatif.

http://jsfiddle.net/JhpRk/

#icons{float:left;}
2
Teffi