Bonjour,
J'ai une exercice a faire et je suis débutante en programmation
Je dois aligner les trois listes sur une même ligne j'ai écris ce code mais je ne comprend pas pourquoi cela ne fonctionne pas ... pouvez vous m'aider ?
sachant qu'il y a également des listes avant et après dans la page que je ne veux pas aligner ...
voila monde code html
<h2> Performances</h2>
<ul>
<li id ="liste1">
<h3>Laugh</h3>
<p>As an adult, come and discover our irresistible clowns, between practical jokes and pranks let yourself be carried away by their joy and fall back into childhood.</p>
</li>
<li id ="liste2">
<h3>Marvel at</h3>
<p>Tame the untameable in the company of our tamers, between roar and razor-sharp claws, watch these fierce felines turn into sweet kittens.</p>
</li>
<li id="liste3">
<h3>Dream</h3>
<p>Let yourself be carried away in a world where the real and the imaginary are one, in the company of our talented magicians, discover a wonderful world limited only by your imagination.</p>
</li>
</ul>
</div>
et mon code css :
#liste1,#liste2,#liste3 {
display: inline-block;
list-style: none;
margin: 10px;
}
J'ai une exercice a faire et je suis débutante en programmation
Je dois aligner les trois listes sur une même ligne j'ai écris ce code mais je ne comprend pas pourquoi cela ne fonctionne pas ... pouvez vous m'aider ?
sachant qu'il y a également des listes avant et après dans la page que je ne veux pas aligner ...
voila monde code html
<h2> Performances</h2>
<ul>
<li id ="liste1">
<h3>Laugh</h3>
<p>As an adult, come and discover our irresistible clowns, between practical jokes and pranks let yourself be carried away by their joy and fall back into childhood.</p>
</li>
<li id ="liste2">
<h3>Marvel at</h3>
<p>Tame the untameable in the company of our tamers, between roar and razor-sharp claws, watch these fierce felines turn into sweet kittens.</p>
</li>
<li id="liste3">
<h3>Dream</h3>
<p>Let yourself be carried away in a world where the real and the imaginary are one, in the company of our talented magicians, discover a wonderful world limited only by your imagination.</p>
</li>
</ul>
</div>
et mon code css :
#liste1,#liste2,#liste3 {
display: inline-block;
list-style: none;
margin: 10px;
}