Is the load and processing dynamics between HTML and CSS asynchronous?

Asked

Viewed 41 times

2

After the Three-way Handshake, that is, establishing the TCP connection between the client and the server. The client starts downloading the files.

My doubts are:

  1. If in an HTML page that contains CSS files, the files are downloaded by browser synchronously or asynchronously? and
  2. After all the downloaded files how the processing between the files works for the final display of the page "stylized"?
<!DOCTYPE html>
<html>
    <head>
        <link rel="stylesheet" type="text/css" href="main.css">
        <link rel="stylesheet" type="text/css" href="mystyle.css">
    </head>
    <body>
        <h1>This is a heading</h1>
        <p>This is a paragraph.</p>
    </body>
</html>
No answers

Browser other questions tagged

You are not signed in. Login or sign up in order to post.