Guest User

Untitled

a guest
Dec 18th, 2018
70
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.33 KB | None | 0 0
  1. <!-- HTML -->
  2.  
  3. <div class="info-panel">
  4. … content …
  5. </div>
  6.  
  7. <!-- CSS -->
  8.  
  9. .info-panel {
  10. position: relative;
  11. }
  12.  
  13. .info-panel:before {
  14. content: "";
  15. display: block;
  16. width: 10px;
  17. height: 10px;
  18. background: url(../path/to/image.png) 0 0 no-repeat;
  19. position: absolute; top: -10px; right: 10px;
  20. }
Add Comment
Please, Sign In to add comment