turning a div into transparent to see through two containers
问题 I have following markup <body> <div class="holder"> <div class="circle"></div> </div> </body> and i have applied a fixed background to body element and white background applied to class holder body { background: url(image.png); background-attachment: fixed; } .holder { width: 500px; height: 500px; background: #fff; } .circle { width: 100px; height: 100px; border-radius: 50%; background: rgba(0, 0, 0, 0); } what i have tried to do is to make the circle transparent to see the body background.