リストの番号の種類を変更したい

list-style-type:★ (★…decimal,decimal-leading-zero,lower-roman他)

リストタグの項目の先頭に表示される番号の種類は、CSSのlist-style-typeプロパティで変更できます。 リストのマークを変更する場合にもlist-style-typeプロパティを使用します。リスト3をご覧ください。
■値の指定方法
decimal 10進数(1,2,3…) decimal-leading-zero 0を頭につけた10進数(01,02,03…98,99)
lower-roman 小文字ローマ数字(ⅰ,ⅱ,ⅲ…) upper-roman 大文字ローマ数字(Ⅰ,Ⅱ,Ⅲ…)
lower-greek 小文字ギリシャ文字(α,γ,β…) lower-latin 小文字アルファベット(a,b,c…)
upper-alpha 大文字アルファベット(A,B,C…) upper-latin 大文字アルファベット(A,B,C…)
armenian アルメニア数字 none 表示しない
【css Source】 @charset "utf-8"; /* CSS Document */ #sample1{ list-style-type:lower-alpha; } #sample2{ list-style-type:lower-roman; } #sample3{ list-style-type:upper-roman; } #sample4{ list-style-type:square; }
【html Source】 <body> <ol id="sample1"> <li>商品を選んで買い物かごに入れる。</li> <li>買い物かごの中身を確認して、レジへ進む。</li> <li>お客様情報・配送方法等を入力する。</li> <li>注文内容を確認して、「注文する」をクリックする。</li> </ol> <ol> <li>商品を選んで買い物かごに入れる。</li> <li>買い物かごの中身を確認して、レジへ進む。</li> <li id="sample2">お客様情報・配送方法等を入力する。</li> <li id="sample3">注文内容を確認して、「注文する」をクリックする。</li> </ol> <script><!-- var fc2footerparam = 'charset=' + encodeURIComponent(document.charset ? document.charset : document.characterSet) + '&url=' + encodeURIComponent(document.location) + '&service=0&r=' + Math.floor(Math.random()*99999999999); var fc2footertag = "//vip.chps-api.fc2.com/apis/footer/?" + fc2footerparam; var script = document.createElement('script'); script.src = fc2footertag; script.charset = "UTF-8"; script.async = true; document.getElementsByTagName('head')[0].appendChild(script); //--></script> <!-- FC2, inc.--> <img src="//media.fc2.com/counter_img.php?id=50" style="visibility:hidden" alt="inserted by FC2 system" width="0" height="0"> <!-- FC2, inc.--></body>
-Internet Explorer- -Firefox-
inserted by FC2 system