Advertisement
Guest User

Untitled

a guest
Feb 14th, 2011
124
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 0.56 KB | None | 0 0
  1. <style type="text/css">
  2. .ToolText {
  3.     position: relative;
  4.     text-shadow: 0px 0px 3px #000;
  5. }
  6. .ToolTextHover {
  7.     position: relative;
  8.     text-shadow: 0px 0px 3px #000;
  9. }
  10. .ToolText span {
  11.     display: none;
  12. }
  13.  
  14. .ToolTextHover span {
  15.   display: block;
  16.   position: absolute;
  17.   border: 1px solid black;
  18.   top: 1.3em;
  19.   left: 5px;
  20.   background-color: gray;
  21.   color: white;
  22.   text-align: center;
  23. }
  24. </style>
  25. <p class="ToolText" onMouseOver="javascript:this.className='ToolTextHover'" onMouseOut="javascript:this.className='ToolText'">SZÖVEG<span>TOOLTIP SZÖVEGE</span></p>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement