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 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72
| <!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <title></title> <style type="text/css"> .one{ width: 300px; height: 300px; border: 20px dashed gold; padding: 30px; margin: 0 auto; background-image: url(img/1.png);
background-repeat: no-repeat;
background-position: center;
background-size: contain ;
background-origin: border-box;
background-clip: content-box; } .two{ background: url(img/1.png) no-repeat center content-box; background-size: contain; } </style> </head> <body> <div class="one"> <h1>hi,girl!</h1> </div> <div class="two"> <h1>hi,girl!</h1> </div> </body> </html>
|