0

我的内容如下。(我只包括了 3 个中的前 2 个)。

1 
Get in touch
Get in touch with us to discuss your requirements.

2
Choose a service
One of our agents will aid you in choosing from our range of services. 

换句话说:

Number
Heading
Text

我怎样才能标记这个?我认为这应该是一个有序列表。我可以在有序列表中添加标题吗?

4

1 回答 1

3

是的你可以。您将标题放在列表项中,然后将后面的任何段落放在同一个列表项中(我只是<h2>用作示例):

<ol>
    <li>
        <h2>Get in touch</h2>
        <p>Get in touch with us to discuss your requirements.</p>
    </li>
    <li>
        <h2>Choose a service</h2>
        <p>One of our agents will aid you in choosing from our range of services.</p>
    </li>
    <li>
        <!-- Third item -->
    </li>
</ol>

标题需要位于列表项中,而不是直接位于有序列表本身中,这样标记才能有效。考虑到您想要的结果,这也是有道理的。

于 2013-09-06T17:44:32.120 回答