When a visitor loads one of your Web pages, either by typing the address into a browser or by clicking a link, the server (the computer that stores the Web page) sends the HTML file to the visitor’s computer along with any files linked to or embedded in the HTML file, such as images or movies. The CSS code, or style sheet, can be either embedded directly in the HTML file or linked to it. Regardless of where it’s located, the visitor’s browser will interpret this code by using its particular rendering engine to apply the CSS to the HTML, and then display the page in the browser window.

The code used to create the Web page is downloaded, interpreted, and then rendered by the browser to create the final display.
The interpretation and application of the style sheet by the browser’s rendering engine is where our headaches begin. The W3C has gone to great lengths to specify how browser manufacturers should render the code, but bugs, omissions, and misinterpretations still creep in, meaning that no two browsers will render a Web page exactly the same. For the most part, these differences will go unnoticed by the user, but occasionally these differences are glaring and require you to do some extra work to get the page to look right in the broadest spectrum of browsers.
Tips

An HTML page using CSS to add an image in the background, position the content down and to the right, and format the text.

The same code displayed without the benefit of CSS. The page still displays, but without the formatting in Figure.