mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-10-31 22:25:30 +00:00
21 lines
521 B
HTML
21 lines
521 B
HTML
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
|
|
"http://www.w3.org/TR/xhtml1/DTD/xhtml1.dtd">
|
|
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en">
|
|
|
|
<head>
|
|
<link rel="stylesheet" media="screen" type="text/css"
|
|
href="outermost-sheet.css" title="A"/>
|
|
<link rel="alternate stylesheet" media="screen" type="text/css"
|
|
href="outer-sheet.css" title="B"/>
|
|
|
|
</head>
|
|
|
|
<body>
|
|
<ul>
|
|
<li class="outermost">purple</li>
|
|
<li class="outer">blue</li>
|
|
<li class="inner">yellow</li>
|
|
</ul>
|
|
</body>
|
|
</html>
|