Google News
logo
CSS3 - Interview Questions
Can you write CSS3 code for creating Multi Background Images?
Here is the CSS3 code for creating multi background images.
 
<style>
   #multibackgroundimg {
             background-image: url(imgs/logo.png), url(imgs/sample_logo.png);
             background-position: left top, left top;
             background-repeat: no-repeat, repeat;
             padding: 75px;
            }
</style>
Advertisement