#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> #en Before dd or dt elements inside dl elements. #ja dl 要素中の dd 要素か dt 要素の前。 #en Before a dd element inside a dialog element. #ja dialog 要素中の dd 要素の前。 #en The dt element represents the term, or name, part of a term-description group in a description list (dl element), and the talker, or speaker, part of a talker-discourse pair in a conversation (dialog element). #ja dt 要素は、説明並び (dl 要素) 中の用語・説明の群の一部として、 用語や名前を表し、会話 (dialog 要素) 中の話者・談話の組の一部として、 話者を表します。 #en The dt element itself, when used in a dl element, does not indicate that its contents are a term being defined, but this can be indicated using the dfn element. #ja dt 要素自体は、 dl 要素中で用いられた場合にも、 その内容が定義される用語であると示してはいませんが、 dfn 要素を使ってそうであると示すことができます。 #en If the dt element is the child of a dialog element, and it further contains a time element, then that time element represents a timestamp for when the associated discourse (dd element) was said, and is not part of the name of the talker. #ja dt 要素が dialog 要素の子供である場合で、かつ更に time 要素を含んでいる場合、その time 要素は関連付けられた談話 (dd 要素) が話された時刻印を表し、話者の名前の一部ではありません。 #en The following extract shows how an IM conversation log could be marked up. #ja 次の抜粋は、即席メッセージの会話記録をどうマーク付けできるかを示しています。 #en After dt or dd elements inside dl elements. #ja dl 要素中の dt 要素か dd 要素の後。 #en After a dt element inside a dialog element. #ja dialog 要素中の dt 要素の後。 #en The dd element represents the description, definition, or value, part of a term-description group in a description list (dl element), and the discourse, or quote, part in a conversation (dialog element). #ja dd 要素は、説明並び (dl 要素) 中の用語・説明の群の一部として説明や定義や値を表し、 会話 (dialog 要素) の一部として談話や引用を表します。