Question from the HTML5/CSS3 test

Given the following HTML code, what is the order of the images in the DOM?

Easy

What images will be displayed and visible on the screen by a modern browser on a classic screen without changing the default settings?

<div class="container">
    <img src="image1.jpg" alt="">
 
    <p style="position: absolute; left: -1000em">
        <img src="image2.jpg" alt="">
    </p>
 
    <p style="visibility: hidden;">
        <img src="image3.jpg" alt="">
    </p>
    
    <p style="display: none;">
        <img src="image4.jpg" alt="">
    </p>
 
</div>
Author: Vincent CotroStatus: Published(Update)Question passed 43 times
Edit
0
Community EvaluationsNo one has reviewed this question yet, be the first!