Dev log - 7, CSS #6
2795 ワード
CSS関連
フォントサイズが12 px以下になると、フォントが破損する可能性があります
相対単位
毎回相対サイズが適用されるわけではなく、より多くの場合は固定サイズが使用される media query
異なるデバイス上のhtmlドキュメントに適切なフォーマットのルールを持たせる
以下の形式、
transition
:アトリビュート変更時間の設定(アニメーションアトリビュートは個別に設定する必要があります)
(属性参考サイト:https://developer.mozilla.org/en-US/docs/Web/CSS/easing-function)
transform
:要素の移動、スケール、回転などの属性を設定します. Do it! Web規格における定式化356 p~376 p,389 p~408 p
フォントサイズが12 px以下になると、フォントが破損する可能性があります
display: flex
属性justify-content: center
属性設定時、中央align-items: center
属性を設定する場合は、縦方向中央em
:親ラベルに適用されるfont-size
単位でサイズを決める(デフォルトサイズは16 px)rem
:htmlタグに適用されるfont-size
単位でサイズを決める(最も一般的)vh
:スクリーンサイズ(Viewport height
)の1%を占めるvw
:スクリーンサイズ(Viewport width
)の1%を占めるvmin
:画面の横または縦のサイズが小さい(占めるViewport smaller dimension
の1%)vmax
:画面の横または縦のサイズが大きい(占めるViewport larger dimension
の1%)異なるデバイス上のhtmlドキュメントに適切なフォーマットのルールを持たせる
link
方式、@import
方式、@media
方式(推奨)以下の形式、
screen
またはall
属性は、印刷を含めると後者@media screen and ( min-width: 751px ) and ( max-width: 992px ) {
body { background: darkorange; }
#wrap:before {
content: 'orange';
font-size: 2em;
color: white;
}
}
@media screen and ( min-width: 501px ) and ( max-width: 750px ) {
body { background: gold; }
#wrap:before {
content: 'yellow';
font-size: 1.75em;
color: white;
}
}
and ( orientation: landscape )
属性を設定する場合、横画面を設定する場合の属性、and ( orientation: portrait )
属性設定時、垂直画面時の属性:アトリビュート変更時間の設定(アニメーションアトリビュートは個別に設定する必要があります)
transition-property
:transition
該当する属性transition-duration
:transition
の合計時間transition-delay
:transition
開始までの最小保持時間transition-timing-function
:transition
の進捗(属性参考サイト:https://developer.mozilla.org/en-US/docs/Web/CSS/easing-function)
transition: (property), (duration), (delay), (timing-function)
手順transform
:要素の移動、スケール、回転などの属性を設定します.
translate(x,y)
:x軸、y軸で移動scale(x,y)
:X軸、Y軸で拡大・縮小skew(x,y)
:X軸、Y軸ねじれrotate(각도)
:角度回転Reference
この問題について(Dev log - 7, CSS #6), 我々は、より多くの情報をここで見つけました https://velog.io/@kangsanz/Dev-log-7-CSS-6テキストは自由に共有またはコピーできます。ただし、このドキュメントのURLは参考URLとして残しておいてください。
Collection and Share based on the CC Protocol