CSS
 Computer >> コンピューター >  >> プログラミング >> CSS

CSSを使用したツールチップの上部への矢印


を使用する ツールチップの上部に矢印を追加するCSSプロパティ。

次のコードを実行して、上部に矢印の付いたツールチップを追加してみてください。

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

  1. CSSを使用したツールチップの右側の矢印

    左を使用 ツールチップの右側に矢印を追加するCSSプロパティ。 次のコードを実行して、右側に矢印の付いたツールチップを追加してみてください。 例 <!DOCTYPE html> <html>    <style>       .mytooltip .mytext {          visibility: hidden;          width: 140px;      

  2. アニメーションを使用したCSSのトッププロパティ

    アニメーションをtopに実装するには CSSでプロパティを使用すると、次のコードを実行してみることができます- 例 <!DOCTYPE html> <html>    <head>       <style>          div {             position: absolute;