git-svn-id: svn://euphorik.ch/pompage@45 02bbb61a-6d21-0410-aba0-cb053bdfd66a
[pompage.git] / doc / webdeveloper / stylesheets / display_link_details.css
1 @import url("imports/before.css");
2
3 a[href]:before
4 {
5 content: "Href=" attr(href) !important;
6 }
7
8 a[href][ping]:before
9 {
10 content: "Href=" attr(href) " Ping=" attr(ping) !important;
11 }
12
13 a[href][ping][rel]:before
14 {
15 content: "Href=" attr(href) " Ping=" attr(ping) " Rel=" attr(rel) !important;
16 }
17
18 a[href][ping][target]:before
19 {
20 content: "Href=" attr(href) " Ping=" attr(ping) " Target=" attr(target) !important;
21 }
22
23 a[href][ping][rel][target]:before
24 {
25 content: "Href=" attr(href) " Ping=" attr(ping) " Rel=" attr(rel) " Target=" attr(target) !important;
26 }
27
28 a[href][rel]:before
29 {
30 content: "Href=" attr(href) " Rel=" attr(rel) !important;
31 }
32
33 a[href][rel][target]:before
34 {
35 content: "Href=" attr(href) " Rel=" attr(rel) " Target=" attr(target) !important;
36 }
37
38 a[href][target]:before
39 {
40 content: "Href=" attr(href) " Target=" attr(target) !important;
41 }
42
43 a[ping]:before
44 {
45 content: "Ping=" attr(ping) !important;
46 }
47
48 a[ping][rel]:before
49 {
50 content: "Ping=" attr(ping) " Rel=" attr(rel) !important;
51 }
52
53 a[ping][target]:before
54 {
55 content: "Ping=" attr(ping) " Target=" attr(target) !important;
56 }
57
58 a[rel]:before
59 {
60 content: "Rel=" attr(rel) !important;
61 }
62
63 a[rel][target]:before
64 {
65 content: "Rel=" attr(rel) " Target=" attr(target) !important;
66 }
67
68 a[target]:before
69 {
70 content: "Target=" attr(target) !important;
71 }