borderプロパティ一括指定
backgroundプロパティは半角スペースで区切る事で一括指定する事が出来ます。
.bg{ background: [background-color] [background-image] [background-repeat] [background-attachment] [background-position];}
[例]
.bg {
background-color: #ccc;
background-image: url("bg.gif");
background-repeat: repeat-x;
background-attachment: fixed;
background-position: top;
}
background-color: #ccc;
background-image: url("bg.gif");
background-repeat: repeat-x;
background-attachment: fixed;
background-position: top;
}
上記内容を一括で記述すると
.bg{
background: #ccc url("bg.gif") repeat-x fixed top;
}
background: #ccc url("bg.gif") repeat-x fixed top;
}
となります。
同じカテゴリの記事



