1
0
mirror of https://github.com/rkd77/elinks.git synced 2024-08-20 20:54:47 -04:00
elinks/test/css/selectors.html
Petr Baudis 0f6d4310ad Initial commit of the HEAD branch of the ELinks CVS repository, as of
Thu Sep 15 15:57:07 CEST 2005. The previous history can be added to this
by grafting.
2005-09-15 15:58:31 +02:00

19 lines
531 B
HTML

<style>
div { color: yellow }
div#foo { background: red }
div.foo { background: blue }
div .foo{ background: purple }
p,span { color: aqua; }
div, { background: green; }
p { background: gray }
p span { color: red; }
p>span { color: purple; }
p * i { color: green; background: white; }
</style>
<div>div <span>span</span> div <span class="foo">spanclass</span> div</div>
<div id="foo">id</div>
<div class="foo">class <i>i</i></div>
<p>p <span>i</span> <b>bold <span>i</span></b></p>
<p><b>jedi<i> mind </i>tricks</b></p>