當前位置:首頁 » 背景圖片 » 背景圖片下邊如何漸變css
擴展閱讀
手機好多圖片 2025-02-02 09:48:56
日本哪個牙膏最好圖片 2025-02-02 09:46:41

背景圖片下邊如何漸變css

發布時間: 2023-08-12 10:43:16

Ⅰ 請問一下CSS3樣式中如何讓背景漸變與背景圖片共存啊!

目前,對CSS3支持日趨完善,實現兼容性的漸變背景效果是完全可以的,讓背景漸變與背景圖片共存的方法很簡單,主要要注意的是圖片要 保持「最小單元」的准則,選擇正確的瀏覽器,該問題就能得到解決,下面介紹一下具體的解決方法。

Ⅱ css背景圖片漸變色怎麼設置

background: #000000;
background: -moz-linear-gradient(top, #000000 0%, #ffffff 100%);
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#000000), color-stop(100%,#ffffff));
background: -webkit-linear-gradient(top, #000000 0%,#ffffff 100%);
background: -o-linear-gradient(top, #000000 0%,#ffffff 100%);
background: -ms-linear-gradient(top, #000000 0%,#ffffff 100%);
background: linear-gradient(to bottom, #000000 0%,#ffffff 100%);
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#000000', endColorstr='#ffffff',GradientType=0 );

使用css3可以做。