CSSベース
2101 ワード
CSS : cascading stype sheet
selectors
selectorメソッドuniversal*typeTagid#idclass.classattribute[]
universal
* {
color: green;
}
type
li {
color: blue;
}
id
#special {
color: pink;
}
class
.red {
background:yellow;
}
attribute
a[href^="naver"] {
color: green;
}
a tagのhref属性はnaverで始まるcssタイプ
幅はば:幅はば
Height:高さ
padding:コンテンツ内の空間
margin:コンテンツ以外のスペース
背景:背景色
border-width
border-style
border-color
border:2 px dashred:折りたたみ可能
display : inline, inline-block, block
position :
flexbox
容器を飾ることができる子供たち
飾り物ができる子供たち
flex-basis : 60%, auto
:flex boxを構成します!
flex-direction: row;
:プロジェクト方向の設定
: row, column, row-reverse, column-reverse
flex-wrap: nowrap, wrap;
:itemが多くなったら、次の
:nowrap->itemをスキップしない
:wrap->次の行に移動
flex-flow: column nowrap
上の2つを1つに設定
justify-content :flex-start;
中心軸に物を置く方法
: flex-start, flex-end, center, space-between, space-around, space-evenly
align-items : baseline
相対軸に項目を配置
align-content:
border : 1px solid black;
media quories
メディアクエリにサイズが設定されていません
でも大体整理しておきます.
mobile : 320px~480px
tablet : 768px~1024px
desktop : 1024px~
@media screen and (min-width: 800px) {
.container {
width: 50%;
}
}
Reference
この問題について(CSSベース), 我々は、より多くの情報をここで見つけました https://velog.io/@hks713/CSS-기초テキストは自由に共有またはコピーできます。ただし、このドキュメントのURLは参考URLとして残しておいてください。
Collection and Share based on the CC Protocol