I have been scouring the internet in search of an answer to my query but haven't had much luck finding a straightforward solution. I frequently use article classes in my projects, but I never really considered whether they load in a specific order on the page.
For Example:
<div id="example" article class="example1 example2 example3">
Here's the div.
</div>
Furthermore, I am curious to know if I set a background in example 1 and then set a background in example two, would the background of example 1 still be visible beneath example two? Essentially, is it like stacking divs on top of each other?
The reason for my inquiry is because I have an article class with a background of an ajax loader. However, I need to load an image directly on top of the ajax loader. It's my way of creating a budget preloader without dealing with all the complex scripting.
Thank you once again!