印刷時の改ページ位置を指定する

page-break-before:
	auto|always
;
page-break-after:
	auto|always
;
戻る
div{
	page-break-after:always;
	border:solid;
	border-width:thick thin thin thin;
}
印刷時にこのボックスの上で改ページされます。
div{
	page-break-after:always;
	border:solid;
	border-width:thin thin thick thin;
}
印刷時にこのボックスの下で改ページされます。