書式
page-break-before:改行方法
対象
ブロックレベル要素
継承
しない
初期値
auto
バージョン
CSS Level 2
対応ブラウザ
Win IE4.0以降, Mac IE5.0, NN6.0以降, Firefox, Opera 6, Safari
解説
直前での改ページ方法を指定します。以下のものが指定できます。
設定値 | 改ページ方法 |
auto | 自動 |
always | 改ページ |
avoid | 改ページを避ける |
left | 改ページし次のページが左になるようにする |
right | 改ページし次のページが右になるようにする |
サンプルコード
<html>
<head>
<meta http-equiv="content-type" content="text/html;charset=utf-8">
<title>Sample</title>
<style type="text/css"><!--
body { margin:0px; }
div { position:absolute; left:10px; top:10px;width:300px;height:100px;
page-break-before:always;
}
--></style>
</head>
<body>
<img src="Default.png">
<div>Dashboard Sample Text</div>
</body>
</html>