visibility-css.html 446 B

123456789101112131415161718192021
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <meta content="text/html; charset=UTF-8" http-equiv="content-type" />
  5. <title>Visibility test via CSS</title>
  6. <style>
  7. .box-popup {
  8. border : 1px;
  9. min-width : 150px;
  10. }
  11. body {
  12. overflow : hidden;
  13. }
  14. </style></head><body>
  15. <div style="left: 30px; top: 10px; visibility: visible; position: absolute; overflow: visible;"
  16. class="box-popup" id="suggest">
  17. <p>Hello world. I like cheese.</p>
  18. </div>
  19. </body>
  20. </html>