→ 가로의 경우:
@page { size: A4; margin: 0; size: 21.0cm 29.7cm;}
→ 세로의 경우 :
@page { size: A4; margin: 0; size: 29.7cm 21.0cm;}
table { display: table; width: 100%; border-collapse: collapse; border-spacing: 0; table-layout: fixed; }
tr, th, td{border-collapse: collapse;margin: 0 !important;}
이미지를 Static Resource에 작성
<apex:image url="{!$Resource.ReportLogo}"/>
<!-- 속성 잘 모릅니다. renderAs="pdf" 추가하면 pdf로 볼 수 있음 -->
<apex:page showHeader="false" sidebar="false" standardStylesheets="false" applyBodyTag="false" applyHtmlTag="false" lightningStylesheets="false" renderAs="pdf">
<style type="text/css">
@page {
size: A4;
margin: 0;
size: 21.0cm 29.7cm;
}
</style>
<script>
</script>
<html>
<body>
<div><!-- Text 작성 --> </div>
</body>
</html>
</apex:page>
도움 받아 갑니다. 감사합니다.