当前位置: 首页 > 网络学院 > XML相关教程 > XSL-FO > XSL-FO list-block 对象
The <fo:list-block> object is used to format the whole list.
<fo:list-block>对象的作用是:格式化整个列表。
There are four XSL-FO objects used to create lists:
下面列举了四个XSL-FO对象来创建列表:
<fo:list-block> <!-- Contents:(list-item+) --> </fo:list-block> |
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 |