web-dev-qa-db-fra.com

Afficher deux <div> s côte à côte

Mon objectif est d'afficher deux <div>s côte à côte avec le contenu des deux <div>s alignés en haut. Je ne veux pas de texte long dans le deuxième <div> pour envelopper sous le premier.

Enfin, je ne veux pas définir la largeur du second <div> parce que j'ai besoin du balisage pour travailler dans différentes largeurs.

Un exemple de balisage est ci-dessous et à http://jsfiddle.net/rhEyM/ .

[~ # ~] css [~ # ~]

.left-div {
    float: left;
    width: 100px;
    height: 20px;
    margin-right: 8px;
    background-color: linen;
}
.right-div {
    float: left;
    margin-left: 108px;
    background-color: skyblue;
}​

[~ # ~] html [~ # ~]

<div class="left-div">
    &nbsp;
</div>
<div class="right-div">
    My requirements are <b>[A]</b> Content in the two divs should line
    up at the top, <b>[B]</b> Long text in right-div should not wrap
    underneath left-div, and <b>[C]</b> I do not want to specify a
    width of right-div. I don't want to set the width of right-div
    because this markup needs to work within different widths.
</div>

La

32
Jonathan Wood

J'ai retiré le flotteur du deuxième div pour le faire fonctionner.

http://jsfiddle.net/rhEyM/2/

21
Ray Toal

Essayez d'utiliser Flex car c'est le nouveau standard de html5.

http://jsfiddle.net/maxspan/1b431hxm/

<div id="row1">
    <div id="column1">I am column one</div>
    <div id="column2">I am column two</div>
</div>

#row1{
    display:flex;
    flex-direction:row;
justify-content: space-around;
}

#column1{
    display:flex;
    flex-direction:column;

}


#column2{
    display:flex;
    flex-direction:column;
}
35
maxspan

Essayez ceci: ( http://jsfiddle.net/TpqVx/ )

.left-div {
    float: left;
    width: 100px;
    /*height: 20px;*/
    margin-right: 8px;
    background-color: linen;
}
.right-div {

    margin-left: 108px;
    background-color: Lime;
}​​

<div class="left-div">
    &nbsp;
</div>
<div class="right-div">
    My requirements are <b>[A]</b> Content in the two divs should line up at the top, <b>[B]</b> Long text in right-div should not wrap underneath left-div, and <b>[C]</b> I do not want to specify a width of right-div. I don't want to set the width of right-div because this markup needs to work within different widths.
</div>
<div style='clear:both;'>&nbsp;</div>

Astuces:

  • Utilisez simplement float:left dans votre div à gauche uniquement .
  • Aucune vraie raison d'utiliser height, mais de toute façon ...
  • Bonne pratique d'utilisation <div 'clear:both'>&nbsp;</div> après votre dernière div.
9
Dr.Kameleon