Advertisement
Guest User

Untitled

a guest
Nov 13th, 2019
85
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 5 0.84 KB | None | 0 0
  1. CSS code
  2.  
  3. .preview {
  4.     display: none;
  5.     position: fixed;
  6.     z-index: 999;
  7.     width: 100%;
  8.     height: 100%;
  9.     text-align: center;
  10.     top: 0;
  11.     left: 0;
  12.     background: rgba(0,0,0,0.8);
  13. }
  14.  
  15. .preview img {
  16.     width: 40%;
  17.     margin-top: 5%;
  18. }
  19.  
  20. .preview:target {
  21.     outline: none;
  22.     display: block;
  23. }
  24.  
  25. HTML
  26.  
  27. <article class="item item-1">
  28.             <a href="#either">
  29.                 <img src="img/eitherhated.png" alt="">
  30.             </a>
  31.             <!-- https://ae01.alicdn.com/kf/HTB1MaTnabY1gK0jSZTEq6xDQVXan.jpg_q50.jpg -->
  32.             <h2>Either Hated Or Ignored</h2>
  33.             <div class="buy">
  34.                 <a href="#">
  35.                     <p>buy</p>
  36.                 </a>
  37.             </div>
  38.  
  39.             <a href="#_" class="preview" id="either">
  40.                 <img src="img/eitherhated.png" alt="">
  41.             </a>
  42. </article>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement