-1

我在一行中有三个词“书中的章节”“期刊论文”“会议论文”。我想要我的最终结果,比如“Chapters in”和“Chapters in”下面的书。相同的方式“期刊”,但“期刊”和“会议”下方的“论文”以及“会议”下方的论文。这可能吗?

请帮我。

4

3 回答 3

1

这是一种简单的方法:

<table>
  <tr>
    <td>Chapters in<br>Book</td>
    <td>Journal<br>Papers</td>
    <td>Conference<br>Papers</td>
  </tr>
</table>
于 2012-12-12T07:15:21.670 回答
1

这是一种使用 divs 的方法:

<div style="float:left; margin-right:20px">Chapters in<br/>book</div>
<div style="float:left; margin-right:20px">Journal<br/>Papers</div>
<div style="float:left;">Conference<br/>Papers</div>​

jsFiddle 演示:http: //jsfiddle.net/esPRr/

于 2012-12-12T07:17:07.150 回答
0
<ul>
    <li>Chapters in
        <ul><li> book</li></ul>

    </li>
</ul>
​ u may go with this
于 2012-12-12T08:29:40.583 回答