기술
페이지 나누기-전에 속성 페이지 나누기가 요소의 상자 전에 허용 여부 (얼마나 많은)을 나타냅니다.
이 속성의 값은 페이지 나누기가 요소를 따라야하는지 여부를 결정하는 유일한 요소가 아닙니다. 이 결정은 또한 이전 요소에 대한 페이지 나누기 이후 값과 조상 요소에 대한 페이지 나누기 내부 값의 영향을받습니다.
가능한 값
auto − 페이지 나누기는 요소 상자 앞에서 강제하거나 방지하지 않아야합니다.
always −이 요소의 상자 앞에 페이지 나누기를 강제해야합니다.
avoid − 가능한 한 요소의 상자 앞에 페이지 나누기를 배치해서는 안됩니다.
left − 요소가 인쇄되는 다음 페이지가 왼쪽 페이지가되도록 요소 상자 앞에 한두 페이지 나누기를 강제합니다.
right − 요소가 인쇄되는 다음 페이지가 오른쪽 페이지가되도록 요소 상자 앞에 한두 페이지 나누기를 강제합니다.
적용
모든 블록 레벨 요소.
예
다음은 예입니다.
<html>
<head>
<style type = "text/css">
p{page-break-before: always;}
</style>
</head>
<body>
<p>
Android is an open source and Linux-based Operating System for mobile devices such as smartphones and tablet computers. Android was developed by the Open Handset Alliance, led by Google, and other companies.
Android offers a unified approach to application development for mobile devices which means developers need only develop for Android, and their applications should be able to run on different devices powered by Android.
The first beta version of the Android Software Development Kit (SDK) was released by Google in 2007 where as the first commercial version, Android 1.0, was released in September 2008.
On June 27, 2012, at the Google I/O conference, Google announced the next Android version, 4.1 Jelly Bean. Jelly Bean is an incremental update, with the primary aim of improving the user interface, both in terms of functionality and performance.
The source code for Android is available under free and open source software licenses. Google publishes most of the code under the Apache License version 2.0 and the rest, Linux kernel changes, under the GNU General Public License version 2
</p>
<p>
Android applications are usually developed in the Java language using the Android Software Development Kit.
Once developed, Android applications can be packaged easily and sold out either through a store such as Google Play or the Amazon Appstore.
Android powers hundreds of millions of mobile devices in more than 190 countries around the world. It's the largest installed base of any mobile platform and growing fast. Every day more than 1 million new Android devices are activated worldwide.
This tutorial has been written with an aim to teach you how to develop and package Android application. We will start from environment setup for Android application programming and then drill down to look into various aspects of Android applications
</p>
<button onclick = "myFunction()">Print this page</button>
<script>
function myFunction() {
window.print();
}
</script>
</body>
</html>
다음 결과가 생성됩니다-
자세한 내용은 CSS 페이징 미디어를 참조하십시오 .