カテゴリー
CSS max-height

【CSS】max-height:高さの最大値を指定する

(例)【CSS】max-heightの使用方法

See the Pen
width,height
by linlin (@linlin098765)
on CodePen.

<div>ああああああああああああああああああ</div>
div{
  background-color:gray;
  width:10vw;
  max-width:150px;
  min-width:100px;
  height:5vw;
  max-height:200px;
  min-height:50px;
}

【CSS】max-height:高さの最大値を指定する

 CSSのmax-heightは、高さの最大値を指定するプロパティです。
 指定方法は、px,vw,vh,%などがあります。

カテゴリー
CSS height

【CSS】height:高さを指定する

(例)【CSS】heightの使用方法

See the Pen
width,height
by linlin (@linlin098765)
on CodePen.

<div>ああああああああああああああああああ</div>
div{
  background-color:gray;
  width:10vw;
  max-width:150px;
  min-width:100px;
  height:5vw;
  max-height:200px;
  min-height:50px;
}

【CSS】height:高さを指定する

 CSSのheightは、高さを指定するプロパティです。
 指定方法は、px,vw,vh,%などがあります。

カテゴリー
CSS min-width

【CSS】min-width:横幅の最小値を指定する

(例)【CSS】min-widthの使用方法

See the Pen
width,height
by linlin (@linlin098765)
on CodePen.

<div>ああああああああああああああああああ</div>
div{
  background-color:gray;
  width:10vw;
  max-width:150px;
  min-width:100px;
  height:5vw;
  max-height:200px;
  min-height:50px;
}

【CSS】min-width:横幅の最大値を指定する

 CSSのmin-widthは、横幅の最小値を指定するプロパティです。
 指定方法としては、px,vw,vh,%などがあります。

カテゴリー
CSS max-width

【CSS】max-width:横幅の最大値を指定する

(例)【CSS】max-widthの使用方法

See the Pen
width,height
by linlin (@linlin098765)
on CodePen.

<div>ああああああああああああああああああ</div>
div{
  background-color:gray;
  width:10vw;
  max-width:150px;
  min-width:100px;
  height:5vw;
  max-height:200px;
  min-height:50px;
}

【CSS】max-width:横幅の最大値を指定する

 CSSのmax-widthは、横幅の最大値を指定するプロパティです。
 指定方法としては、px,vw,vh,%などがあります。

カテゴリー
CSS width

【CSS】width:横幅を指定する

(例)【CSS】widthの使用方法

See the Pen
width,height
by linlin (@linlin098765)
on CodePen.

<div>ああああああああああああああああああ</div>
div{
  background-color:gray;
  width:10vw;
  max-width:150px;
  min-width:100px;
  height:5vw;
  max-height:200px;
  min-height:50px;
}

【CSS】width:横幅を指定する

 CSSのwidthは、横幅を指定するプロパティです。
 指定方法は、px,vw,vh,%などがあります。

カテゴリー
CSS text-shadow

【CSS】text-shadow:テキストに影をつける

(例)【CSS】text-shadow:テキストに影をつける

See the Pen
text-shadow
by linlin (@linlin098765)
on CodePen.

<p class="sample1">text-shadow</p>
p.sample1 {text-shadow:3px 3px 3px gray;}

【CSS】text-shadow:テキストに影をつける

 CSSのtext-shadowはテキストに影をつけるプロパティです。

  • none
    影をつけない
  • 数値
    水平距離・垂直距離・半径の順で指定
カテゴリー
CSS word-spacing

【CSS】word-spacing:単語の間隔を指定

(例)【CSS】word-spacingの使用方法

See the Pen
word-spacing
by linlin (@linlin098765)
on CodePen.

<div class="sample1">I am man.</div>
<div class="sample2">I am man.</div>
<div class="sample3">I am man.</div>
<div class="sample4">I am man.</div>
<div class="sample5">I am man.</div>
div.sample1 {word-spacing: 10px;}
div.sample2 {word-spacing: 30px;}
div.sample3 {word-spacing: -10px;}
div.sample4 {word-spacing: 50%;}
div.sample5 {word-spacing: -50%;}

【CSS】word-spacing:単語の間隔を指定

 CSSのword-spacingは、単語の間隔を指定するプロパティです。負の値も指定可能です。

  • normal
    スペース0(初期値)
  • 数値
    px, em,exなどで指定
  • %
    文字幅に対するパーセント分を指定
カテゴリー
CSS letter-spacing

【CSS】letter-spacing:文字間隔を指定

(例)【CSS】letter-spacingの使用方法

See the Pen
letter-spacing
by linlin (@linlin098765)
on CodePen.

<div class="sample1">文字間隔10px</div>
<div class="sample2">文字間隔20px</div>
<div class="sample3">文字間隔-10px</div>
div.sample1 {letter-spacing: 10px;}
div.sample2 {letter-spacing: 20px;}
div.sample3 {letter-spacing: -10px;}

【CSS】letter-spacing:文字間隔を指定

 CSSのletter-spacingは、文字の間隔を指定するプロパティです。行頭・行末以外にして可能で、負の値も指定可能です。

  • nomal
    スペース幅は0(初期値)
  • 数値
    px, em,exなどで指定可能
カテゴリー
CSS white-space

【CSS】white-space:スペース・改行方法の調整

(例)【CSS】white-spaceの使用方法

See the Pen
white-space
by linlin (@linlin098765)
on CodePen.

<h5>white-space: normal;</h5>
<p class="sample" style="white-space: normal;">
ああああああああああああああ
    良い良い良い良い良い良い良い
</p>

<h5>white-space: pre;</h5>
<p class="sample" style="white-space: pre;">
ああああああああああああああ
    良い良い良い良い良い良い良い
</p>

<h5>white-space: nowrap;</h5>
<p class="sample" style="white-space: nowrap;">
ああああああああああああああ
    良い良い良い良い良い良い良い
</p>

<h5>white-space: pre-wrap;</h5>
<p class="sample" style="white-space: pre-wrap;">
ああああああああああああああ
    良い良い良い良い良い良い良い
</p>

<h5>white-space: pre-line;</h5>
<p class="sample" style="white-space: pre-line;">
ああああああああああああああ
    良い良い良い良い良い良い良い
</p>
p.sample {
	width:200px;
	background-color:gray;
}

【CSS】white-space:スペース・改行方法の調整

 CSSのwhite-spaceは、ソース中のスペース・改行の表示方法を指定するプロパティです。

  • normal
    スペースを無視。改行を半角スペースに指定(初期値)
    ボックスサイズによっては自動改行。
  • pre
    スペース・改行をそのまま表示。
    ボックスサイズによらず自動改行しない。
  • nowrap
    スペースを無視。改行を半角スペースに指定。
    ボックスサイズによらず自動改行しない。
  • pre-wrap
    スペース・改行をそのまま表示。
    ボックスサイズによっては自動改行。
  • pre-line
    スペースを無視。改行はそのまま表示。
    ボックスサイズによっては自動改行。
カテゴリー
CSS text-transform

【CSS】text-transform:大文字・小文字・全角文字への変換

(例)【CSS】text-transformの使用方法

See the Pen
text-transform
by linlin (@linlin098765)
on CodePen.

<p class="sample1">There are three apples on the desk.</p>
<p class="sample2">There are three apples on the desk.</p>
<p class="sample3">There are three apples on the desk.</p>
<p class="sample4">There are three apples on the desk.</p>
<p class="sample5">There are three apples on the desk.</p>
p.sample1 {text-transform: none;}
p.sample2 {text-transform: capitalize;}
p.sample3 {text-transform: uppercase;}
p.sample4 {text-transform: lowercase;}
p.sample5 {text-transform: full-width;}

【CSS】text-transform:大文字・小文字・全角文字への変換

 CSSのtext-transformは、大文字・小文字・全角文字への変換を指定するプロパティです。

  • none
    変換しない(初期値)
  • capitalize
    単語の先頭文字を大文字に変換
  • uppercase
    全ての文字を大文字に変換
  • lowercase
    全ての文字を小文字に変換
  • full-width
    全ての文字を全角に変換