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