Greetings! I am a newcomer to the world of CSS and I am currently utilizing a single image in my header, as shown below:
#header {
position: relative;
background-image: url("../../images/header.jpg");
background-size: cover;
background-position: center center;
background-attachment: fixed;
color: #fff;
text-align: center;
padding: 7.5em 0 2em 0;
cursor: default;
}
I am curious, is there a way to incorporate multiple images in the same header with a transition effect, without altering the HTML structure of the header and solely controlling the images through CSS?