最新のWeb開発のチュートリアル
×

CSS 参照

CSS 参照 CSS セレクタ CSS 機能 CSS リファレンス聴覚 CSS ウェブセーフフォント CSS アニメーション CSS ユニット CSS PX-EMコンバータ CSS 色 CSS 色 価値観 CSS3 ブラウザのサポート

CSS プロパティ

align-content align-items align-self all animation animation-delay animation-direction animation-duration animation-fill-mode animation-iteration-count animation-name animation-play-state animation-timing-function backface-visibility background background-attachment background-blend-mode background-clip background-color background-image background-origin background-position background-repeat background-size border border-bottom border-bottom-color border-bottom-left-radius border-bottom-right-radius border-bottom-style border-bottom-width border-collapse border-color border-image border-image-outset border-image-repeat border-image-slice border-image-source border-image-width border-left border-left-color border-left-style border-left-width border-radius border-right border-right-color border-right-style border-right-width border-spacing border-style border-top border-top-color border-top-left-radius border-top-right-radius border-top-style border-top-width border-width bottom box-shadow box-sizing caption-side clear clip color column-count column-fill column-gap column-rule column-rule-color column-rule-style column-rule-width column-span column-width columns content counter-increment counter-reset cursor direction display empty-cells filter flex flex-basis flex-direction flex-flow flex-grow flex-shrink flex-wrap float font @font-face font-family font-size font-size-adjust font-stretch font-style font-variant font-weight hanging-punctuation height justify-content @keyframes left letter-spacing line-height list-style list-style-image list-style-position list-style-type margin margin-bottom margin-left margin-right margin-top max-height max-width @media min-height min-width nav-down nav-index nav-left nav-right nav-up opacity order outline outline-color outline-offset outline-style outline-width overflow overflow-x overflow-y padding padding-bottom padding-left padding-right padding-top page-break-after page-break-before page-break-inside perspective perspective-origin position quotes resize right tab-size table-layout text-align text-align-last text-decoration text-decoration-color text-decoration-line text-decoration-style text-indent text-justify text-overflow text-shadow text-transform top transform transform-origin transform-style transition transition-delay transition-duration transition-property transition-timing-function unicode-bidi vertical-align visibility white-space width word-break word-spacing word-wrap z-index



 

CSSユニット


CSSユニット

CSSは、長さを表現するための、いくつかの異なる単位を有します。

多くのCSSプロパティを取る"length"など、幅、マージン、パディング、フォントサイズ、ボーダー幅、などの値を、

長さは、長さの単位に続く番号など10pxの、2EM、などであります

空白は、数値と単位の間に表示することはできません。 値が0である場合は、ユニットを省略することができます。

いくつかのCSSプロパティの場合は、負の長さが許可されています。

相対および絶対:長さの単位の2種類があります。


ブラウザのサポート

表中の数字は、完全長さの単位をサポートする最初のブラウザのバージョンを指定します。

長さ単位
em, ex, %, px, cm, mm, in, pt, pc 1.0 3.0 1.0 1.0 3.5
ch 27.0 9.0 1.0 7.0 20.0
rem 4.0 9.0 3.6 4.1 11.6
vh, vw 20.0 9.0 19.0 6.0 20.0
vmin 20.0 9.0 * 19.0 6.0 20.0
vmax 26.0 サポートされていません 19.0 サポートされていません 20.0

Note: VM:Internet Explorer 9のは、非標準の名前でVMINサポートしています。


相対的な長さ

相対的な長さの単位は、別のlengthプロパティに相対的な長さを指定します。 相対的な長さの単位は、異なるレンダリング媒体との間のより良好なスケール。

単位 説明
em 要素のフォントサイズに相対(2em means 2 times the size of the current font) 、それを試してみてください
ex 現在のフォントのxの高さを基準に(rarely used) それを試してみてください
ch 幅に対して"0" (zero)
rem ルート要素のフォントサイズを基準に
vw ビューポートの幅の1%に比べて* それをお試しください
vh ビューポートの高さの1%に比べて* それをお試しください
vmin ビューポートの1%の相対*小さな寸法をお試しください
vmax ビューポートの1%の相対*大きな寸法は、 それを試してみてください
%

Tip:全角とレムユニットは完全にスケーラブルなレイアウトを作成する際に実用的です!
*ビューポートは、ブラウザのウィンドウのサイズを=。 ビューポートが1vw = 0.5センチメートル、50センチメートル広い場合。


絶対長

絶対的な長さの単位は固定されており、これらのいずれかで表現の長さは、まさにそのサイズとして表示されます。

画面サイズがそんなに変わるので、絶対的な長さの単位は、画面上での使用は推奨されていません。 出力媒体は、印刷レイアウトとして、知られている場合は、それらを使用することができます。

単位 説明
cm センチはそれを試してみてください
mm ミリはそれを試してみてください
in インチ(1in = 96px = 2.54cm) をお試しください
px * ピクセル(1px = 1/96th of 1in) 、それを試してみてください
pt ポイント(1pt = 1/72 of 1in) それを試してみてください
pc パイカ(1pc = 12 pt) をお試しください

*ピクセル(px) 、視聴デバイスに関連したものです。 低解像度デバイスの場合、1ピクセルが1デバイスピクセルである(dot)ディスプレイの。 プリンタや高解像度の画面について1ピクセルは、複数のデバイスピクセルを意味します。