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
| .app { width: 100px; height: 100px; margin: 50px auto; border-radius: 2px; background-color: palegreen; position: relative; pointer-events: none; } .app * { pointer-events: auto; } .app-content { width: 50px; height: 50px; position: absolute; left: 0; top: 0; background: cornflowerblue; } .app::after { content: ""; display: block; background: paleturquoise; width: 30px; height: 30px; position: absolute; right: 0; bottom: 0; pointer-events: auto; }
|