0
我在pdf報告中有一個標題,標題的高度將保持不變,當標題被編輯時,我的header.html.erb看起來像這樣 -如何在pdf中實現可變動態高度位置:固定
<div id="custom_header">
<div style="margin-top: 30px;"></div>
<%= HeaderFooterDesign.custom_header %>
</div>
<style>
#custom_header {
position: fixed;
top: 0px;
left: 0;
bottom:0;
width: 100%;
height:200px;
}
body {
top: 0px;
height:200px;
width: auto;
}
現在我已經給出身高:200px;在CSS中,標題將正確顯示某些給定的高度,如果高度大於或高度超過給定的那麼頭中的PDF格式的報告不會顯示,所以我在尋找dynamic height with position fixed factors
限制我Dont want Scroll header
所以任何一個可以幫助我