Upgrade to Pro — share decks privately, control downloads, hide ads and more …

第五回ネットワークチーム講座

 第五回ネットワークチーム講座

More Decks by 北海道科学大学 電子計算機研究部

Other Decks in Education

Transcript

  1. 背景に関するプロパティ • background-color … 背景色の指定 • background-image … 背景画像の指定 •

    background-position … 背景画像の表示開始位置の指定 • background-repeat … 背景画像のリピートの仕方を指定する • background-attachment … 背景画像の固定を行う • background-size … 背景画像のサイズの指定する
  2. background-position • 水平方向の位置の指定 1. left 2. center 3. right 4.

    数値(px)で指定 5. %で指定 • 垂直方向の位置の指定 1. top 2. center 3. bottom 4. 数値(px)で指定 5. %で指定
  3. background-repeat • 指定方法 1. repeat ・・・ 敷き詰める(初期値) 2. repeat-x ・・・

    水平方向に並べる 3. repeat-y ・・・ 垂直方向に並べる 4. no-repeat ・・・ 一つだけ表示
  4. background-attachment • 指定方法 1. scroll ・・・ 要素に対して固定される(初期値) 2. fixed ・・・

    画面に対して固定される 3. local ・・・ 要素の内容に対して固定される ※後の演習で詳しく説明します。
  5. background-size 背景画像のサイズを指定する。 background-size: 幅 高さ; で指定、あるいは ~ contain;等属性値で指定する。 • auto:

    初期値。元画像からのアスペクト比を変えずに表示 • contain: 背景領域に収まる最大サイズで表示する • cover: 背景領域を完全に覆うサイズで表示する • 数値で指定 • %で指定