Browser Styles - HTML CSS CSS

HTML CSS examples for CSS:Introduction

Introduction

The browser styles (user agent styles) are the default styles a browser applies to an element if no other style has been specified.

The following code shows a simple HTML document that contains no styles.

Demo Code

ResultView the demo in separate window

<!DOCTYPE HTML>
<html>
    <head>
        <title>Example</title>
    </head>
    <body>
        <a href="http://java2s.com">Website</a>
        <p>I like <span>CSS</span> and HTML.</p>
        <a href="http://w3c.org">Visit the W3C website</a>
    </body>
</html><!--from   ww  w .jav  a2  s .c om-->

Related Tutorials