Advertisement
pusatdata

Text dengan ToolsTips

Nov 18th, 2014
198
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.93 KB | None | 0 0
  1.  
  2. <!DOCTYPE html>
  3. <html lang="en">
  4. <head>
  5. <meta charset="utf-8" />
  6. <title>CSS3 tooltip</title>
  7.  
  8. <style type="text/css">
  9.  
  10. .tooltip{
  11. display: inline;
  12. position: relative;
  13. }
  14.  
  15. .tooltip:hover:after{
  16. background: #333;
  17. background: rgba(0,0,0,.8);
  18. border-radius: 5px;
  19. bottom: 26px;
  20. color: #fff;
  21. content: attr(title);
  22. left: 20%;
  23. padding: 5px 15px;
  24. position: absolute;
  25. z-index: 98;
  26. width: 220px;
  27. }
  28.  
  29. .tooltip:hover:before{
  30. border: solid;
  31. border-color: #333 transparent;
  32. border-width: 6px 6px 0 6px;
  33. bottom: 20px;
  34. content: "";
  35. left: 50%;
  36. position: absolute;
  37. z-index: 99;
  38. }
  39.  
  40. </style>
  41.  
  42.  
  43. </head>
  44. <body>
  45.  
  46.  
  47. <br /><br /><br /><br />
  48. <a href="#" title="This is some information for our tooltip." class="tooltip"><span title="More">CSS3 Tooltip</span></a>
  49.  
  50.  
  51. </body>
  52. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement