Advertisement
chernov2000

Крестик в CSS

Feb 5th, 2024
1,197
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 0.26 KB | None | 0 0
  1. div {cursor: pointer; position: absolute; top: 20px; left: 10px;}
  2. div:before, div:after {content: ""; position: absolute; width: 24px; height: 4px; background: gray;}
  3. div:before {transform: rotate(45deg);}
  4. div:after {transform: rotate(-45deg);}
  5.  
  6. <div></div>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement