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

CSSでトップツールチップを設定する


トップツールチップを設定するには、ボトムを使用します CSSプロパティ。

次のコードを実行して、トップツールチップをテキストに設定することができます:

<!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: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;     &n

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

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