File: simplecolors.html

package info (click to toggle)
elinks 0.19.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky
  • size: 24,296 kB
  • sloc: ansic: 174,602; cpp: 31,967; sh: 7,841; python: 4,039; perl: 2,183; javascript: 1,794; pascal: 1,710; makefile: 1,006; yacc: 295; lisp: 125; awk: 79; ruby: 70
file content (20 lines) | stat: -rw-r--r-- 1,224 bytes parent folder | download | duplicates (13)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
Brm. <div style="color: green">green</div>

<p style="color: rgb(100%, 100%, 0)">yellow</p>

<a href="foo" style="color: purple">purple</a>
<a href="foo" style="color:#00ffff">g-b</a>
<a href="foo" style="color:#0ff">g-b short</a>
<a href="foo" style="color:#00ffff;foo=bar">g-b-mixed</a>
<a href="foo" style="bar=baz ;color:#00ffff;foo=bar">mixed-g-b-mixed</a>
<a href="foo" style="bar=baz ;color:#0ff;foo=bar">mixed-g-b-mixed short</a>
<a href="foo" style="color: rgb(0, 80, 160);">strange</a>
<a href="foo" style="background-color: green; color: yellow">yellow on green</a>

<div style="background: red">background: red</div>
<div style="background: rgb(50%,100%,0)">background: rgb(50%,100%,0%)</div>
<div style="background: red rgb(50%,100%,0%)">background: red rgb(50%,100%,0%)</div>
<div style="background: rgb(50%,100%,0%) red">background: rgb(50%,100%,0%) red</div>
<div style="background: fixed rgb(50%,100%,0%) 50% red no-repeat">background: ..combined..</div>
<div style="background: fixed rgb(50%,100%,0%) 50% red no-repeat; color: aqua">background: ..combined..; aquatext</div>
<div style="background: fixed rgb(50%,100%,0%) 50% red no-repeat green; color: aqua">background: ..combined.. green; aquatext</div>