JSFiddle - React, Tailwind, and code Playground

by Stéphane LEGRAND

HTML

<div id="conteneur">
   
<form method="post" action="traitement.php">
<p id="recherches_enregistrees">
<select name="recherches_enregistrees" id="">
<option value="recherche">Recherches enregistrées</option>
</select>
</p>
</form>
   
</div>

CSS

*{
font-family: 'Trebuchet MS', Arial, Helvetica, sans-serif;
}
 
 
#conteneur{
  display: inline-block;
  width: 160px;
  height: 100px;
  background-color: blue;
}
 
 
#recherches_enregistrees{
display: inline-block;
background-color: red;
width: 130px;
float: left;
font-size: 0.8em;
}