Show Output
<!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"> <title>Adding Multiple Background Images to a DIV Element with CSS3</title> <style> .box { width: 100%; height: 500px; background: url("/examples/images/birds.png") no-repeat center, url("/examples/images/clouds.png") no-repeat center, url("/examples/images/sun.png") no-repeat 10% 30%, lightblue; } </style> </head> <body> <div class="box"></div> </body> </html>