#en Zero or more li elements. #ja 0個以上の li 要素。 #en The ul element represents a list of items, where the order of the items is not important — that is, where changing the order would not materially change the meaning of the document. #ja ul 湯素は、項目の並びを表します。 ただし、項目の順序は重要ではない、 つまり順序変更が実質的に文書の意味を変更しない並びを表します。 #en The items of the list are the li element child nodes of the ul element. #ja 並び中の項目は、 ul 要素中の li 要素である子供節点です。 #en The following markup shows a list where the order does not matter, and where the ul element is therefore appropriate. Compare this list to the equivalent list in the ol section to see an example of the same items using the ol element. #ja 次のマーク付けは、順序が重要ではないので ul 要素が適切であるような並びを示しています。 この並びと、 ol の節にある、 同じ項目で ol 要素を使った同じような並びを比べてみてください。 #en <p>I have lived in the following countries:</p> <ul> <li>Norway <li>Switzerland <li>United Kingdom <li>United States </ul> #ja <p>私は次の国に住んでいました:</p> <ul> <li>ノルウェイ <li>スイス <li>イギリス <li>アメリカ </ul> #en Note that changing the order of the list does not change the meaning of the document. The items in the snippet above are given in alphabetical order, but in the snippet below they are given in order of the size of their current account balance in 2007, without changing the meaning of the document whatsoever: #ja 並びの順序を変えても文書の意味が変わらないことに注意してください。 先の例の項目は逆五十音順でしたが、次の例は2007年の経常収支の大きさの順です。 しかし、文書の意味は変わっていません。 #en <p>I have lived in the following countries:</p> <ul> <li>Switzerland <li>Norway <li>United Kingdom <li>United States </ul> #ja <p>私は次の国に住んでいました:</p> <ul> <li>スイス <li>ノルウェイ <li>イギリス <li>アメリカ </ul>