i need HTML expert to help me modified the templates
to make the html report looks tiny.
a page break at every new heading of test cases.
i did some research for page break code
<style>
.break { page-break-before: always; }
</style>
<body>
content on page 1...
<h1 class="break">text of Heading 1 on page 2</h1>
content on page 2...
<h1 class="break">text of Heading 1 on page 3</h1>
content on page 3...
<p class="break">content on top of page 4</p>
content on page 4...
</body>but where should i put this into, whcih templates?ProjectTemplate.html?or PrjTestCaseEdit.html?
to make the html report looks tiny.
a page break at every new heading of test cases.
i did some research for page break code
<style>
.break { page-break-before: always; }
</style>
<body>
content on page 1...
<h1 class="break">text of Heading 1 on page 2</h1>
content on page 2...
<h1 class="break">text of Heading 1 on page 3</h1>
content on page 3...
<p class="break">content on top of page 4</p>
content on page 4...
</body>but where should i put this into, whcih templates?ProjectTemplate.html?or PrjTestCaseEdit.html?
Comment