<h1> fubon guardinas </h1> <h1> CTBC brothers </h1>
background-color
h1 { background-color: rgba(10,0,255,0.5); } // 另一種寫法: 也可以直接打色碼#000000; 或是顏色屬性:red 諸如此類。
很多時候,我們會需要一張背景圖片,讓網頁看上去不這麼單調。
此時就需要認識到幾種屬性:
兩種組法:
1-1. 可使用相對位置,自己 PC 的路徑來鍵入(範例):
background-image: url('./img/fg/2022cover.jpeg');
background-image: url('輸入網址');
這是因為,當網頁瀏覽器太大時,background-image 內建的屬性:
background-repeat,會預設自動 repeat 到整個網頁結束這樣。
提供以下方法來解決。
// 預設: background-size: content // 改成: background-size: cover;
no-repeat
// 預設 content 圖片不夠大會 repeat,使用下列語法可解除: background-repeat: no-repeat;
2022 網頁開發全攻略教程 / CSS篇章 - box model
or
By clicking below, you agree to our terms of service.
New to HackMD? Sign up