1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40
| <!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <title></title> <style type="text/css"> div{ width: 600px; height: 600px; background: url(img/1.png); border: 3px solid gold; -webkit-mask-image: url(img/heart.png) ; -webkit-mask-size: 50px; -webkit-mask-repeat:no-repeat; -webkit-mask-position: center; -webkit-mask:top url(img/heart.png),bottom url(img/nike.png); -webkit-mask-size:60px; } </style> </head> <body>
<div class=""> </div> </body> </html>
|