Mozile Test 2 - Using an external Style Sheet

This page contains a <link> tag inside the <head> tag, which links to an external CSS file mozileTest2.css. The CSS file designates which tags are editable using a Class selector.

Edit this text!

Here is the CSS Class selector:

.editable {
  -moz-user-modify: read-write;
  -moz-user-input: enabled;
}

and this is the relevant XHTML markup:

<html>

  <head>
    <title>Mozile Test 2</title>
    <link rel="stylesheet" type="text/css" href="mozileTest2.css"/>
  </head>

  <body>
    ...
    <div id="MozileTest2" class="editable">
      <p>Edit this text!</p>
    </div>
    ...
  </body>

</html>