diff --git a/www/index.php b/www/index.php
index 48c81d6aeda3a06fddeda6d51a299c722ef902fe..3c2b2e0faa1dd7ee0cc365a099935835aa0bdd07 100644
--- a/www/index.php
+++ b/www/index.php
@@ -231,8 +231,10 @@ $tachesArrayDb = $stmt->fetchAll(PDO::FETCH_ASSOC);
 
                 <li class="<?= ($infoTache["accomplie"] === true)?"accomplie":""; ?>">
                     <span class="coche done"><a href="?action=basculer&id=<?= $infoTache["id"]; ?>" title="Cliquez pour faire basculer l'état de cette tâche."><img src="ressources/images/coche.svg" alt=""></a></span>
-                    <span class="texte"><?= $infoTache["texte"]; ?></span>
-                    <span class="ajout"><?= $infoTache["date_ajout"]; ?></span>
+		    <div class="memo">    
+			<span class="texte"><?= $infoTache["texte"]; ?></span>
+			<span class="ajout"><?= $infoTache["date_ajout"]; ?></span>
+		    </div>
                     <span class="coche"><a href="?action=supprimer&id=<?= $infoTache["id"]; ?>" title="Cliquez pour supprimer cette tâche."><img src="ressources/images/delete.svg" alt=""></a></span>
                 </li>
 
@@ -243,4 +245,4 @@ $tachesArrayDb = $stmt->fetchAll(PDO::FETCH_ASSOC);
     </div>
 </body>
 
-</html>
\ No newline at end of file
+</html>