(例)【CSS】全称セレクタの使用方法
See the Pen
全称セレクタ by linlin (@linlin098765)
on CodePen.
<div>ああああ</div>
<p>良い良い</p>
*{color:red;}
【CSS】全称セレクタ:全要素にスタイルを適用する
CSSの全称セレクタは、全ての要素にスタイルを適用するセレクタです。「*{}」で全要素をセレクタ可能です。
See the Pen
全称セレクタ by linlin (@linlin098765)
on CodePen.
<div>ああああ</div>
<p>良い良い</p>
*{color:red;}
CSSの全称セレクタは、全ての要素にスタイルを適用するセレクタです。「*{}」で全要素をセレクタ可能です。
See the Pen
要素型セレクタ by linlin (@linlin098765)
on CodePen.
<div>あああああああああああ</div>
<p>良い良い良い良い良い良い</p>
div{color:red;}
p{color:blue;}
CSSの要素型セレクタとは、特定要素に対してスタイルを指定するセレクタを指します。例えばpタグに適用したい場合「p{}」、divタグに適用したい場合「div{}」となります。
See the Pen
page by linlin (@linlin098765)
on CodePen.
<p class="sample1">
あああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああ
</p>
<p class="sample2">
いいいいいいいいいいいいいいいいいいいいいいいいいいいいいいいいいいいいいいいいいいいいいいいいいいいいいいいいいいいいいいいいいいいいいいいいいいいいいいいいいいいいいいいいい
</p>
@page m50 {margin:50mm;}
@page {size:100mm 100mm;marks:crop cross;}
p.sample1 {page:m50;}
CSSのmarksは、印刷時にトンボを印刷するか指定するプロパティです。
※トンボとは、印刷物の裁断位置や多色刷りの見当合わせのために、版下原稿のと上下左右の中央に印刷される位置合わせの目印を言います。
See the Pen
page by linlin (@linlin098765)
on CodePen.
<p class="sample1">
あああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああ
</p>
<p class="sample2">
いいいいいいいいいいいいいいいいいいいいいいいいいいいいいいいいいいいいいいいいいいいいいいいいいいいいいいいいいいいいいいいいいいいいいいいいいいいいいいいいいいいいいいいいい
</p>
@page m50 {margin:50mm;}
@page {size:100mm 100mm;}
p.sample1 {page:m50;}
CSSのsizeは、pageプロパティで定義したページボックスのサイズ・向きを指定するプロパティです。1つの値を指定するとサイズ・向きの両方がその値となり、2つの値を指定するとサイズ・向きをそれぞれ指定可能です。
See the Pen
page by linlin (@linlin098765)
on CodePen.
<p class="sample1">
あああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああ
</p>
<p class="sample2">
いいいいいいいいいいいいいいいいいいいいいいいいいいいいいいいいいいいいいいいいいいいいいいいいいいいいいいいいいいいいいいいいいいいいいいいいいいいいいいいいいいいいいいいいい
</p>
@page m50 {margin:50mm;}
p.sample1 {page:m50;}
CSSのpageは、@pageで定義されたページボックス名を指定し、ページボックスを適用するプロパティです。
See the Pen
widows by linlin (@linlin098765)
on CodePen.
<p class="sample1">
あああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああ
</p>
<p class="sample2">
いいいいいいいいいいいいいいいいいいいいいいいいいいいいいいいいいいいいいいいいいいいいいいいいいいいいいいいいいいいいいいいいいいいいいいいいいいいいいいいいいいいいいいいいい
</p>
p.sample1 {widows:3; font-size:30px; line-height:50px;}
CSSのwidowsは、改ページされる際の次ページの最低行数を指定するプロパティです。
See the Pen
widows by linlin (@linlin098765)
on CodePen.
<p class="sample1">
あああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああ
</p>
<p class="sample2">
いいいいいいいいいいいいいいいいいいいいいいいいいいいいいいいいいいいいいいいいいいいいいいいいいいいいいいいいいいいいいいいいいいいいいいいいいいいいいいいいいいいいいいいいい
</p>
p.sample1 {widows:3; font-size:30px; line-height:50px;}
CSSのorphansは、改ページされる際の前ページの最低行数を指定するプロパティです。
See the Pen
page-break-inside by linlin (@linlin098765)
on CodePen.
<p class="sample1">
あああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああ
</p>
<p class="sample2">
いいいいいいいいいいいいいいいいいいいいいいいいいいいいいいいいいいいいいいいいいいいいいいいいいいいいいいいいいいいいいいいいいいいいいいいいいいいいいいいいいいいいいいいいい
</p>
p.sample1 {page-break-inside:avoid; font-size:30px; line-height:50px;}
CSSのpage-break-insideは、印刷時の改ページを避けるプロパティです。
See the Pen
page-break-before by linlin (@linlin098765)
on CodePen.
<p class="sample1">
あああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああ
</p>
<p class="sample2">
いいいいいいいいいいいいいいいいいいいいいいいいいいいいいいいいいいいいいいいいいいいいいいいいいいいいいいいいいいいいいいいいいいいいいいいいいいいいいいいいいいいいいいいいい
</p>
p.sample1 {page-break-before: always; }
p.sample2 {page-break-before: always; page-break-after: always; }
CSSのpage-break-afterは、印刷時の改ページ位置を指定するプロパティです。page-break-afterを指定した要素の直後で強制的に改ページまたは、その位置で改ページを禁止することが可能です。
See the Pen
page-break-before by linlin (@linlin098765)
on CodePen.
<p class="sample1">
あああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああああ
</p>
<p class="sample2">
いいいいいいいいいいいいいいいいいいいいいいいいいいいいいいいいいいいいいいいいいいいいいいいいいいいいいいいいいいいいいいいいいいいいいいいいいいいいいいいいいいいいいいいいい
</p>
p.sample1 {page-break-before: always; }
p.sample2 {page-break-before: always; page-break-after: always; }
CSSのpage-break-beforeは、印刷時の改ページ位置を指定するプロパティです。page-break-beforeを指定した要素の直前で強制的に改ページまたは、その位置で改ページを禁止することが可能です。