当前位置: 首页 > 网络学院 > XML相关教程 > XSL-FO > XSL-FO list-item 对象
There will be one <fo:list-item> object for each item in a list.
对于每张列表中的每个项来说都包含一个<fo:list-item>对象。
There are four XSL-FO objects used to create lists:
有四个XSL-FO对象可以用来创建列表,具体如下:
<fo:list-item> <!-- Contents:(list-item-label,list-item-body) --> </fo:list-item> |
An XSL-FO list example:
一个XSL-FO列表案例:
<fo:list-block> <fo:list-item> <fo:list-item-label> <fo:block>*</fo:block> </fo:list-item-label> <fo:list-item-body> <fo:block>Volvo</fo:block> </fo:list-item-body> </fo:list-item> <fo:list-item> <fo:list-item-label> <fo:block>*</fo:block> </fo:list-item-label> <fo:list-item-body> <fo:block>Saab</fo:block> </fo:list-item-body> </fo:list-item> </fo:list-block> |
The output from this code would be:
上述代码将输出下面的结果:
* Volvo * Saab |