backgroundというキーワードコードの挿入について書いていきます。

backgroundとは

HTML属性とCSSプロパティで用意されているキーワードです。
主に背景画像を指定します。
HTMLでは[body],[table],[td],[th],[tr]などのタグの属性として指定できます。
CSSでは背景のプロパティの一括指定に使います。

■文法
background: background-color background-image background-repeat background-attachment background-position;

■意味
background-color 背景色
background-image 背景画像
background-repeat 背景画像の繰り返し
background-attachment 背景画像の固定
background-position 背景画像の位置

■使用例
background: #fff url(bg.gif) no-repeat fixed 100% 100%;

コードの挿入

DreamweaverにはCSSパネルをはじめとする編集ツールがありますが、エディタへのキーボード打ち込みの方が速くていいという人は直打ちでも良いでしょう。

広告

関連コンテンツ