Advertisement
loveberry

background border (image)

Jun 28th, 2023 (edited)
250
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.69 KB | None | 0 0
  1. <style>
  2. .bg {
  3. /* for plain background */
  4. background: #FE82B624;
  5. /* vv for image background. remove if want plain */
  6. background-image:url(https://i.imgur.com/Wy0Pm6R.jpg);
  7. background-size:cover;
  8.  
  9. padding:12px; /* make number bigger/smaller for a bigger/smaller border */
  10. border:1px solid black;
  11. width:fit-content;
  12. }
  13.  
  14. .inner {
  15. background: #FFF;
  16. border:1px solid black;
  17. height:300px; /* change height of image */
  18. width:auto; /* change width of image */
  19. overflow-y:auto; /* remove overflow if you don't want a scroll */
  20. /* set height to "height:fit-content;" to expand with text size */
  21. }
  22. </style>
  23.  
  24. <div class="bg">
  25. <img class="inner" src="https://i.imgur.com/uO0i2L4.png">
  26. </div>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement