OLD | NEW |
1 <!DOCTYPE html> | 1 <!DOCTYPE html> |
2 <style> | 2 <style> |
3 .box { | 3 .box { |
4 height: 200px; | 4 height: 200px; |
5 width: 200px; | 5 width: 200px; |
6 border: 1px solid black; | 6 border: 1px solid black; |
7 background-repeat: no-repeat; | 7 background-repeat: no-repeat; |
8 background-size: 100px 100px; | 8 background-size: 100px 100px; |
9 background-position: 0 0, 100px 100px; | 9 background-position: 0 0, 100px 100px; |
10 background-image: url('../images/resources/green-256x256.jpg'), url('../
images/resources/dice.png'); | 10 background-image: url('../images/resources/green-256x256.jpg'), url('../
images/resources/dice.png'); |
11 transform: translate3d(50px, 50px, 0); | 11 transform: translate3d(50px, 50px, 0); |
12 } | 12 } |
13 </style> | 13 </style> |
14 <div id="test" class="box"> | 14 <div id="test" class="box"> |
15 </div> | 15 </div> |
OLD | NEW |