Maison  >  Article  >  interface Web  >  Utilisez CSS pour pointer la flèche vers le bas de l'info-bulle

Utilisez CSS pour pointer la flèche vers le bas de l'info-bulle

WBOY
WBOYavant
2023-09-08 21:41:06857parcourir

使用 CSS 将箭头指向工具提示底部

Utilisez la propriété CSS top pour ajouter une flèche au bas de l'info-bulle.

Exemple

Vous pouvez essayer d'exécuter le code ci-dessous pour ajouter une info-bulle avec une flèche vers le bas :

Live Demo

<!DOCTYPE html>
<html>
   <style>
      .mytooltip .mytext {
         visibility: hidden;
         width: 140px;
         background-color: blue;
         color: #fff;
         z-index: 1;
         bottom: 100%;
         left: 60%;
         margin-left: -90px;
         text-align: center;
         border-radius: 6px;
         padding: 5px 0;
         position: absolute;
      }
      .mytooltip {
         position: relative;
         display: inline-block;
         margin-top: 50px;
      }
      .mytooltip .mytext:after {
         content: "";
         position: absolute;
         top: 100%;
         left: 50%;
         margin-left: -10px;
         border-width: 7px;
         border-style: solid;
         border-color: blue transparent transparent transparent;
      }
      .mytooltip:hover .mytext {
         visibility: visible;
      }
   </style>

   <body>
      <div class = "mytooltip">Keep mouse cursor over me
         <span class = "mytext"> My Tooltip text</span>
      </div>
   </body>
</html>

Ce qui précède est le contenu détaillé de. pour plus d'informations, suivez d'autres articles connexes sur le site Web de PHP en chinois!

Déclaration:
Cet article est reproduit dans:. en cas de violation, veuillez contacter admin@php.cn Supprimer