-
Notifications
You must be signed in to change notification settings - Fork 83
/
Copy path01_attr.html
48 lines (44 loc) · 2.16 KB
/
01_attr.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
<!DOCTYPE HTML>
<html>
<head>
<style>
head, style {display: block;}
[contenteditable] {-webkit-user-modify: read-write-plaintext-only;}
style:first-of-type {visibility:hidden;}
style:last-of-type {padding: 20px; font-size: 1.5em; white-space: pre; font-family: monospace; white-space:pre; border-radius: 10px; border: 3px solid #aaa; background-color:#dedede; margin: 20px auto; width: 80%; font-family:"Courier New", Courier, monospace;}
ol {font-family:Verdana, Geneva, sans-serif; font-size:1.2em}
li {color: black;}
:root {background-color:#ccc;
background-image:url(../css/page-bg.jpg);}
ol {font-family:Verdana, Geneva, sans-serif; font-size:1.2em}
li {color: black;}
li li {color: green;}
</style>
<style contenteditable>i[title] {color: red;}
a[href] {text-decoration: overline;}
</style>
<title>CSS Selector Test</title>
</head>
<body><ol>
<li class="myClass" title="unicorns eat rainbows">First List Item - <li class="myClass" title="unicorns eat rainbows"></li>
<li>Second List Item has a <span>span</span> - <li>Second List Item has a <span>span</span></li></li>
<li class="myClass">Third List Item - <li class="myClass"></li>
<li>Fourth List Item</li>
<li>Fifth List Item
<ul>
<li>Child 1 external <a href="http://site.com/file.pdf" title="external pdf file">pdf</a> - <a href="http://site.com/file.pdf" title="external pdf file"></li>
<li>Child 2</li>
<li>Child 3</li>
</ul>
</li>
<li>Sixth List Item</li>
<li id="myID">Seventh List Item - <li id="myID"></li>
<li>Eighth List Item</li>
<li class="myClass">Ninth List Item - <li class="myClass"></li>
<li>Tenth List Item with an external <a href="http://standardista.com">Link</a> - <a href="http://standardista.com">Link</a></li>
<li>Eleventh List Item with a <a href="local.pdf" title="a local pdf file">PDF</a> - <a href="local.pdf" title="a local pdf file">PDF</a></li>
<li>Twelvth List Item</li>
<li title="unicorn ate a rainbow">Thirteenth List Item - <li title="unicorn ate a rainbow"></li>
</ol>
</body>
</html>