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
| * { margin: 0; padding: 0; }
section { position: relative; width: 600px; height: 400px; margin: 100px auto; background: url(../img/bg.jpeg) no-repeat, linear-gradient(45deg, #ff3479, #ffc107); background-blend-mode: soft-light; background-size: cover; background-position: center; }
section::before { content: ""; position: absolute; top: 0; left: 0; width: 100%; height: 20px; display: block;
background: linear-gradient(45deg, transparent 33.33%, #fff 33.33%, #fff 66.66%, transparent 66.66%) repeat-x, linear-gradient( -45deg, transparent 33.33%, #fff 33.33%, #fff 66.66%, transparent 66.66% ) repeat-x; background-size: 20px 40px; transform: rotate(180deg); }
section::after { content: ""; position: absolute; bottom: 0; left: 0; width: 100%; height: 20px; display: block;
background: linear-gradient(45deg, transparent 33.33%, #fff 33.33%, #fff 66.666%, transparent 66.666%), linear-gradient(-45deg, transparent 33.33%, #fff 33.33%, #fff 66.666%, transparent 66.666%); background-size: 20px 40px; }
|