July 5, 2020
CSS background-repeat: round
Author:
David Walsh
Description:
background-repeat: round repeats a background image without clipping!
Kind:
CSS
CSS:
.my-element {
background-image: url(logo.png);
background-repeat: round;
}