/[pub]/test/sw/ids/0/244.txt
Suika

Contents of /test/sw/ids/0/244.txt

Parent Directory Parent Directory | Revision Log Revision Log


Revision 1.1 - (hide annotations) (download)
Mon Nov 24 11:41:56 2008 UTC (17 years, 5 months ago) by wakaba
Branch: MAIN
CVS Tags: HEAD
File MIME type: text/plain
converted from SuikaWiki3 <http://suika.fam.cx/gate/cvs/suikawiki/wikidata/page/6C6973742D7374796C65.txt>

1 wakaba 1.1
2     [1]
3     [[WinIE 6]] ではなぜか [CODE(CSS)@en[[[list-style]]]] が
4     [CODE(CSS)@en[[[list-style-image]]]] を上書きしません。
5    
6     ;; 例:
7     <http://suika.fam.cx/gate/2007/cssom/viewer?c=li%20%7B%0D%0A%20%20padding-left%3A%2010em%3B%0D%0A%20%20list-style-image%3A%20url(image)%3B%0D%0A%20%20list-style%3A%20none%3B%0D%0A%7D%0D%0A;h=%3Cul%3E%3Cli%3Exxxxxxxxxx%3C%2Fli%3E%3C%2Ful%3E;p=n;x=style-element>
8    
9     ;; [[Firefox]] 2 や [[Opera]] 9 ではちゃんと上書きされます。
10    
11     ([[名無しさん]])
12    
13     [2]
14     >>1 [CODE(CSS)@en[[[list-style-position]]]] も同様のようです。
15    
16     ;; <http://suika.fam.cx/gate/2007/cssom/viewer?c=li%20%7B%0D%0A%20%20list-style-position%3A%20inside%3B%0D%0A%20%20list-style%3A%20none%3B%0D%0A%7D%0D%0A%0D%0A;h=%3Cul%3E%3Cli%3Exxxxxxxxxx%3C%2Fli%3E%3C%2Ful%3E;p=n;x=style-element>
17    
18     ([[名無しさん]])
19    
20     [3]
21     >>1-2 実は [CODE(CSS)@en[[[list-style-type]]]] も。つまり、[[初期値]]へのリセットがまったく行われていない。
22    
23     ;; <http://suika.fam.cx/gate/2007/cssom/viewer?c=p%20%7B%0D%0A%20%20list-style%3A%20url(a)%20outside%3B%0D%0A%7D%0D%0A%0D%0A;h=%3Cinput%20type%3Dbutton%20value%3Dshow%20onclick%3D%22%0D%0A%20%20w%20(sd%20().listStyle)%3B%0D%0A%22%3E;p=n;x=style-element>
24    
25     ([[名無しさん]])
26    
27     [4]
28     [CODE(CSS)@en[[[list-style-type]]]] と [CODE(CSS)@en[[[list-style-image]]]]
29     の両方に値 [CODE(CSS)@en[[[none]]]] があるので、 [CODE(CSS)@en[[[list-style]]]]
30     には2回[CODE(CSS)@en[[[none]]]] を指定できます。
31     ([[名無しさん]])
32    
33     [5]
34     >>4 [CODE(CSS)@en[[[none]]]] は2つ両方を [CODE(CSS)@en[[[none]]]] にするという部分が例になっていて、 normative な規定がないような・・・。
35     ([[名無しさん]])
36    
37     [6]
38     [CODE(CSS)@en[[[list-style]]: [[none]]]]
39     <http://suika.fam.cx/gate/2007/cssom/viewer?c=p%20%7B%0A%20%20list-style%3A%20none%3B%0A%7D;h=;p=n;x=style-element>
40    
41     ([[名無しさん]])
42    
43     [7]
44     >>6 [[Firefox]] 2 と [[Opera]] 9 では
45     [PRE(CSS example code)[
46     list-style-type: none;
47     list-style-image: none;
48     list-style-position: outside;
49     ]PRE]
50    
51     の意味。
52    
53     [[WinIE 6]] では [CODE(CSS example)@en[[[list-style-type]]: [[none]]]] の意味。
54     ([[名無しさん]])
55    
56     [8]
57     [[WinIE 6]] では3[[特性]]で有効な値を [CODE(CSS)@en[[[list-style-type]]]] でいくつでも指定できて、各[[特性]]それぞれについて最後にでてきた値が最終的に使われます (でてこなかった[[特性]]の値は変更されません)。
58     ただし、 [CODE(CSS)@en[[[none]]]] が初めて出てきたときは
59     [CODE(CSS)@en[[[list-style-type]]]] が設定され、
60     2回目以降に出てきたときは [CODE(CSS)@en[[[list-style-image]]]]
61     が設定されます。
62     ([[名無しさん]])
63    
64     [9]
65     [CODE(CSS)@en[[[list-style]]: [[none]] [[none]]]]
66     <http://suika.fam.cx/gate/2007/cssom/viewer?c=p%20%7B%0A%20%20list-style%3A%20none%20none%3B%0A%7D;h=;p=n;x=style-element>
67    
68     ([[名無しさん]])
69    
70     [10]
71     >>9 [[Firefox]] 2 と [[Opera]] 9 では [CODE(CSS)@en[[[none]] [[none]] [[outside]]]]
72     と等価です。
73     ([[名無しさん]])
74    
75     [11]
76     [CODE(CSS)@en[[[list-style]]: [[none]] [[url]](a)]]
77     <http://suika.fam.cx/gate/2007/cssom/viewer?c=p%20%7B%0A%20%20list-style%3A%20none%20url(a)%3B%0A%7D;h=;p=n;x=style-element>
78    
79     ([[名無しさん]])
80    
81     [12]
82     >>11 [[Firefox]] 2 と [[Opera]] 9 では [CODE(CSS)@en[[[none]] [[url]](a) [[outside]]]]
83     と等価です。
84     ([[名無しさん]])
85    
86     [13]
87     [CODE(CSS example)@en[[[list-style]]: [[url]](a) [[none]]]]
88     <http://suika.fam.cx/gate/2007/cssom/viewer?c=p%20%7B%0A%20%20list-style%3A%20url(a)%20none%3B%0A%7D;h=;p=n;x=style-element>
89    
90     ([[名無しさん]])
91    
92     [14]
93     >>13 [[Firefox]] 2 と [[Opera]] 9 では >>12 と等価です。
94    
95     ([[名無しさん]])
96    
97     [15]
98     [CODE(CSS)@en[[[list-style]]: [[disc]] [[none]]]]
99     <http://suika.fam.cx/gate/2007/cssom/viewer?c=p%20%7B%0A%20%20list-style%3A%20disc%20none%3B%0A%7D;h=;p=n;x=style-element>
100    
101     ([[名無しさん]])
102    
103     [16]
104     >>15 [[Firefox]] 2 と
105     [[Opera]] 9 では [CODE(CSS)@en[[[disc]] [[none]] [[outside]]]]
106     と等価です。
107     ([[名無しさん]])
108    
109     [17]
110     [CODE(CSS)@en[[[list-style]]: [[none]] [[disc]]]]
111     <http://suika.fam.cx/gate/2007/cssom/viewer?c=p%20%7B%0A%20%20list-style%3A%20none%20disc%3B%0A%7D;h=;p=n;x=style-element>
112    
113     ([[名無しさん]])
114    
115     [18]
116     >>17 [[Opera]] 9 では >>16 と等価です。 [[Firefox]] 2 ではなぜか[[宣言]]ごと[[無視]]されます。
117     ([[名無しさん]])
118    
119     [19]
120     [CODE(CSS)@en[[[list-style]]: [[none]]/**/[[disc]]]]
121     <http://suika.fam.cx/gate/2007/cssom/viewer?c=p%20%7B%0A%20%20list-style%3A%20disc%2F**%2Fnone%3B%0A%7D;h=;p=n;x=style-element>
122    
123     ([[名無しさん]])
124    
125    
126     [20]
127     >>19 [[Opera]] 9 と [[Firefox]] 2 は[[無視]]しませんが、
128     [[WinIE 6]] は[[宣言]]ごと[[無視]]します。
129     ([[名無しさん]])
130    

admin@suikawiki.org
ViewVC Help
Powered by ViewVC 1.1.24