Wed, 31 Dec 2014 06:55:50 +0100
Added tag UPSTREAM_283F7C6 for changeset ca08bd8f51b2
michael@0 | 1 | <!-- Blend a background image and a background color specifying background-clip: padding-box --> |
michael@0 | 2 | <!DOCTYPE HTML> |
michael@0 | 3 | <html> |
michael@0 | 4 | <head> |
michael@0 | 5 | <style> |
michael@0 | 6 | div { |
michael@0 | 7 | padding: 8.5px; |
michael@0 | 8 | margin: 0 0 9px; |
michael@0 | 9 | background: url('as-image/white_square.svg'), #777777; |
michael@0 | 10 | background-clip: padding-box; |
michael@0 | 11 | width: 200px; |
michael@0 | 12 | height: 200px; |
michael@0 | 13 | margin: 10px; |
michael@0 | 14 | background-blend-mode: multiply; |
michael@0 | 15 | } |
michael@0 | 16 | </style> |
michael@0 | 17 | </head> |
michael@0 | 18 | |
michael@0 | 19 | <body> |
michael@0 | 20 | <div></div> |
michael@0 | 21 | </body> |
michael@0 | 22 | </html> |