Advertisement
loveberry

gradient border (image)

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