0
有沒有一種方法可以自動檢測內容何時侵入頁邊距,然後用CSS強制分頁?我有一個具有邊框和一些內容的DIV:CSS:自動分頁符?
<div id="container">
This content could spill into the bottom margin of the printed page....
</div>
CSS:
#container {
border: 2px solid black;
}
是否有@print
規則,將做到以下幾點:
+----------+
| |
| page 1 |
| |
| content |
| |
| this over|
+----------+
+----------+
|flows and |
|the CSS |
|makes a |
|new page |
|with a |
|border |
+----------+
我想以避免必須編寫手動強制中斷的規則,如果可能的話,一個好的解決方案應該(一路)回到IE8 /較老的Firefox。謝謝!
你有沒有試着用搜索引擎呢? http://davidwalsh.name/css-page-breaks – BenM
是的,我已經在那裏登陸了。他似乎用.page-break類選擇器手動強制分頁符,這正是我試圖避免的。 – user1505713