HTML Print Page Header & Page Footer

HTML Print Page Header & Page Footer

Html çıktı alacaksınız ama bu çıktının antetli kağıt gibi bir başlığa ve bir alt açıklama bölümüne sahip olmak istiyorsunuz o zaman aşağıdaki gibi bir kod işinizi görecektir.

<style>
.maintable thead {
    display:table-header-group;
}
.maintable tfoot {
    display:table-header-group;
}
.maintable tbody {
    display:table-row-group;
}
</style>
    <table border="0" cellpadding="0" style="border-collapse:
collapse" width="100%" class="maintable">
    <thead>
        <tr>
            <td>{Page
Header} buraya gelecek</td>
        </tr>
    </thead>
        <tr>
            <td>{Page
Content} buraya gelecek</td>
        </tr>
    <tfoot>
        <tr>
            <td>{Page
Footer} buraya gelecek</td>
        </tr>
    </tfoot>
</table>

Yorum yapılmamış »

Henüz yorum yapılmamış.

Bu yazıya yapılan yorumlar için RSS beslemeleri. Geri İzleme URL'si.

Yorum yapın