下面的HTML/CSS適用於最近的瀏覽器,但不適用於CF9的cfdocument。任何人有想法?ColdFusion cfdocument CSS計數器增量計數器
我該知道些什麼? 是的!我知道CF的cfdocument支持一組有限的CSS屬性。 CF文件說支持計數器復位,計數器遞增和計數器。
預期輸出
雜貨:
1)蘋果
2)香蕉
3)切開羚羊
示例代碼
<cfdocument format="PDF" pagetype="letter"
margintop="0.5" marginbottom="0.5"
marginleft="0.5" marginright="0.5">
<html>
<head>
<style type="text/css">
li { list-style-type: none; }
ol { counter-reset: ordered;
padding-left: 0.5em;
border: solid 1px #F00;
}
li:before { counter-increment: ordered;
content: counter(ordered) ") ";
}
</style>
</head>
<body>
<strong>GROCERIES:</strong><br>
<ol>
<li>Apples</li>
<li>Bananas</li>
<li>Cantelopes</li>
</ol>
</body>
</html>
</cfdocument>
+1讀取支持屬性列表:) – Leigh
參考:cfdocument's支持的CSS屬性[鏈接](http://help.adobe.com/en_US/ColdFusion/9.0/CFMLRef/WSc3ff6d0ea77859461172e0811cbec22c24-7c21.html) – ArdMan