Issue
something similar to this image but pink enter image description here
Solution
Find a small background image of the heart you would like to use and use the background-repeat
CSS property to have it repeat across the x and y axes.
Something similar to this should work:
body {
background-image: url("heart-image.png");
background-repeat: repeat;
}
Answered By - Joshua Baldwin
0 comments:
Post a Comment
Note: Only a member of this blog may post a comment.