background-position-bottom-right-repeat-round-ref.html (392B)
1 <!doctype html> 2 <title>background-position with 'bottom' and 'right' edge keywords with background-repeat 'round' (reference)</title> 3 <style> 4 #target { 5 width: 100px; 6 height: 100px; 7 background-image: linear-gradient(45deg, lime, green); 8 background-repeat: round; 9 background-size: 51px 51px; 10 background-position: left 75% top 75%; 11 } 12 </style> 13 <div id="target"></div>