我有一個正在創建的cfdocument。我有一個頁腳它下面cfdocumentitem頁腳未正確顯示
<cfdocumentitem type="footer" >
<table width="100%" border="0" cellspacing="0" cellpadding="0" bgcolor="##FF6F00" >
<td align="right" style="font-size:10px">
<font color="##FFFFFF"> © AT&T Intellectual Property. All rights reserved.<br>AT&T and the AT&T logo are trademarks of AT&T Intellectual Property.</font>
</td>
</table>
</cfdocumentitem>
我不是能夠得到橙色身體伸展到整個頁面,這意味着橙色部分正在顯示如上。也沒有呈現我指定的字體大小。這是我的風格。關於這裏有什麼問題的任何想法?
.test{
color:#FFFFFF;
font-family:verdana;
font-size:4px
}
.testone{align-content:stretch}
'CFDOCUMENT'和擴展名'CFDOCUMENTITEM'只使用CSS的一部分。 https://wikidocs.adobe.com/wiki/display/coldfusionen/cfdocument不幸的是,'align-content'不是其中之一。至於你的字體大小,最後不要忘記';'。 – Chester