<cfpresentation>
ColdFusion 9.0.1 を使用してタグを使用して PPT を作成しています。プレゼンテーションは生成されますが、その中の情報はコード化されているため表示されません。タグを使用<div>
して列形式の出力を作成しています。ただし、PPT で生成された場合、形式は無視され、データは全文行として表示され、右側の列は左側の列情報のすぐ下に表示されます。以下は、 内の css および html コードです<cfpresentation>
。コードとプレゼンテーションをコードどおりに表示する方法、つまり列に並べられた出力を作成する方法についてのアイデアはありますか?
content {
clear: both;
width: 500px;
padding-bottom: 10px;
overflow:hidden;
margin-left:20px;
margin-right:20px;
}
#contentLeft {
float: left;
width: 250px;
margin-left:10px;
}
#contentRight {
width: 250px;
margin-left:55%;
}
HTML:
<cfpresentationslide>
<div id="content" style="font-size:10px;">
<div id="contentLeft">
<span style="font-weight:bold;">• #title# - </span>
<span style="font-weight:normal;">#backupinfo#</span><p></p>
</div>
<div id="contentRight">
<span style="font-weight:bold;">• #title# - </span>
<span style="font-weight:normal;">#backupinfo#</span><p></p>
</div>
</div>
</cfpresentationslide>