ホームページ > 記事 > ウェブフロントエンド > CSSで背景プロパティを設定する方法(詳しく解説)
この記事ではCSSでbackground属性を設定する方法を詳しく説明します。必要な方は参考にしていただければ幸いです。
背景関連の属性には主に次のものが含まれます:
#p1 { width: 300px; height: 300px; background-color: blue; /*默认是transparent透明的*/ /* background-color: transparent; */ background-image: url(Images/2.jpg); background-repeat: no-repeat; /*不平铺,默认是水平垂直平铺*/ /* background-repeat: repeat-y; */ /* background-repeat: repeat-x; */ /* background-position: right bottom; */ background-position: 10% center; background-attachment: fixed; }
p { width: 100%; height: 300px; background-color: rgba(0, 0, 0, 0.6); }
複数の背景画像を使用する場合は、background を使用して複数の URL を指定します。画像が重なっている場合は、前の画像が上書きされますが、全体の背景色は最後の URL の後に指定する必要があります。
p { width: 100%; height: 300px; background: url(Images/2.jpg) no-repeat left top, url(Images/3.jpg) no-repeat right bottom blue; }
、 CSS3 ビデオ チュートリアル をご覧ください。
以上がCSSで背景プロパティを設定する方法(詳しく解説)の詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。