Guest User

Untitled

a guest
Sep 18th, 2018
96
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 3.14 KB | None | 0 0
  1. <html>
  2.   <head>
  3.     <style type="text/css">
  4.       .ForceRelative
  5.       {
  6.         position: relative !important;
  7.       }
  8.       div.ToolTip
  9.       {
  10.         display: none;
  11.        
  12.         background: rgb(255,255,255);
  13.         background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIwJSIgeTI9IjEwMCUiPgogICAgPHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iI2ZmZmZmZiIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiNlNWU1ZTUiIHN0b3Atb3BhY2l0eT0iMSIvPgogIDwvbGluZWFyR3JhZGllbnQ+CiAgPHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEiIGhlaWdodD0iMSIgZmlsbD0idXJsKCNncmFkLXVjZ2ctZ2VuZXJhdGVkKSIgLz4KPC9zdmc+);
  14.         background: -moz-linear-gradient(top,  rgba(255,255,255,1) 0%, rgba(229,229,229,1) 100%);
  15.         background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(255,255,255,1)), color-stop(100%,rgba(229,229,229,1)));
  16.         background: -webkit-linear-gradient(top,  rgba(255,255,255,1) 0%,rgba(229,229,229,1) 100%);
  17.         background: -o-linear-gradient(top,  rgba(255,255,255,1) 0%,rgba(229,229,229,1) 100%);
  18.         background: -ms-linear-gradient(top,  rgba(255,255,255,1) 0%,rgba(229,229,229,1) 100%);
  19.         background: linear-gradient(to bottom,  rgba(255,255,255,1) 0%,rgba(229,229,229,1) 100%);
  20.         filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#e5e5e5',GradientType=0 );
  21.        
  22.         position: absolute;
  23.         padding: 2px 5px;
  24.         font-size: 10px;
  25.         font-family: Verdana,Arial,Sans;
  26.         -webkit-border-radius: 4px;
  27.         -moz-border-radius: 4px;
  28.         border-radius: 4px;
  29.         border: 1px solid rgb(169,3,41);
  30.       }
  31.  
  32.       select.hover:hover + div.ToolTip
  33.       {
  34.         display: block !important;
  35.       }
  36.  
  37.       ClearBoth
  38.       {
  39.         clear: both !important;
  40.       }
  41.  
  42.       MinimizeHeight
  43.       {
  44.         height: 0 !important;
  45.         line-height: 0 !important;
  46.         font-size: 0 !important;
  47.         padding: 0 !important;
  48.         margin: 0 !important;
  49.       }
  50.  
  51.     </style>
  52.   </head>
  53.   <body>
  54.     <div class="ForceRelative">
  55.       <select class="hover">
  56.         <option>1</option>
  57.       </select>
  58.       <div class="ToolTip">lorem ipsum</div>
  59.       <div class="ClearBoth MinimizeHeight"></div>      
  60.       Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet.
  61.  
  62.     </div>
  63.   </body>
  64. </html>
Add Comment
Please, Sign In to add comment