Imagine having a stylesheet
body {
background-image: url('/images/background.jpg');
}
situated in the header section of a nearby document
<html>
<head>
<link rel="StyleSheet" href="http://externalserver/stylesheet.css" type="text/css" />
</head>
<body>
<h1> This is just a test </h1>
</body>
</html>
Which image would be loaded first:-
or
Thank you