English 中文(简体)
如何利用html在桌子中使用清单项目?
原标题:How to use list item in table cells using html.?

How to use the ordered list in a table, in which each cell will define a list item. like This Picture.

第1栏没有定义。 因此,我试图做如下事情:“本”/。

...... Html Code:

    <table cellspacing="0" border="1">
        <ol type="1">
            <tr>
                <th>Heading 1</th>
                <td>
                    <li> data</li>
                </td> 
                <td>
                    <li> data</li>
                </td> 
                <td>
                    <li> data </li>
                </td>
            </tr>
        </ol>

        <ul type="square">
            <tr>
                <th>Heading 2</th>
                <td>
                    <li> data</li>
                </td>
                <td>
                    <li> data</li>
                </td> 
                <td>
                    <li> data </li>
                </td>
            </tr>
        </ul>

        <ol type="A">
            <tr>
                <th>Heading 3</th>
                <td>
                    <li> data</li>
                </td> 
                <td>
                    <li> data </li>
                </td>
                <td>
                    <li> data </li>
                </td>
            </tr>
        </ol>
    </table>

现在我感到困惑的是,我如何使用<代码><li>在每个囚室里订购或无定顺序的清单,以便将其作为一种名单看待?

问题回答

我不认为你可以把囚室列入名单。 在每一间牢房中,你必须填写一份定购单或无序名单,但从汽车号上打到桌旁。 您可以这样做,并且能够人工确定下一个数字,或编制一个3栏的表格,第一行是你的头盔,第二行各有3栏是清单,使用风格,在每个单元之间划一个横向线,桌子的长度和间隔,以便看它关闭囚室。 然而,如果你有一行和二分之一的一些名单,那就取得了一些成绩。 我认为,你可以做你想要做的事情。 职业介绍。





相关问题
CSS working only in Firefox

I am trying to create a search text-field like on the Apple website. The HTML looks like this: <div class="frm-search"> <div> <input class="btn" type="image" src="http://www....

image changed but appears the same in browser

I m writing a php script to crop an image. The script overwrites the old image with the new one, but when I reload the page (which is supposed to pickup the new image) I still see the old one. ...

Firefox background image horizontal centering oddity

I am building some basic HTML code for a CMS. One of the page-related options in the CMS is "background image" and "stretch page width / height to background image width / height." so that with large ...

Separator line in ASP.NET

I d like to add a simple separator line in an aspx web form. Does anyone know how? It sounds easy enough, but still I can t manage to find how to do it.. 10x!

热门标签