1、 css選擇器設置背景顏色,css背景該用什么代碼?
背景顏色,還是背景圖片。
background-color:圖片地址
2、 css如何讓背景顏色半透明?
你好,html中讓某個標簽背景顏色變?yōu)橥该鳎话阌袃煞N方法。
一種是在css樣式中用opacity屬性來控制div的透明,這種方法會讓div中的所有內(nèi)容都變?yōu)榘胪该鞯男Ч缦滤镜睦樱?/p>
<html>
<head>
<meta charset="utf-8"/>
<style>
.aa{
width: 300px;
height: 300px;
background: red;
opacity: 0.5;
}
.bb{
width: 150px;
height: 150px;
margin:50px;
background: yellow;
}
</style>
</head>
<body>
<div class="aa">背景
<div class="bb">我是內(nèi)容</div>
</div>
</body>
</html>
運行效果如下圖所示:
不管是文字還是背景都變成半透明的了。
第二種方法是,通過background-color或者background屬性,將顏色值設置為帶透明度的值:rgba(255,255,0,0.5)。 最后一個值即為設置透明度。如下例子所示:
<html>
<head>
<meta charset="utf-8"/>
<style>
.aa{
width: 300px;
height: 300px;
/*background: red; */
background-color: rgba(255,0,0,0.5)
/*opacity: 0.5;*/
}
.bb{
width: 150px;
height: 150px;
margin:50px;
background: yellow;
}
</style>
</head>
<body>
<div class="aa">背景
<div class="bb">我是內(nèi)容</div>
</div>
</body>
</html>
運行效果如下所示:
只有背景被設置了不透明度。
希望我的回答對你有所幫助,歡迎關注本頭條號,更多技術分享都在這里
3、 css設置背景附件的屬性時?
背景相關屬性主要有:
background-color背景顏色
background-image背景圖片
background-repeat是否平鋪repeat(默認平鋪)|repeat-x(水平平鋪)|repeat-y(垂直平鋪)|no-repeat(不平鋪)
background-position背景位置length(百分數(shù))|position(topcenterbuttonleftright)一般兩個一起用,如果至指定一個方向另一個方向默認為center,兩種方法也可以混搭。方位名詞沒有順序區(qū)分,而使用百分數(shù)時時有順序的,先是水平后是垂直
background-attachment背景固定還是滾動scroll|fixed
background:背景顏色背景圖片是否平鋪背景固定還是滾動背景位置
4、 css顏色代碼?
透明色:transparent背景色設為透明,代碼如下:background-color:transparent;字體顏色設為透明,代碼如下:color:transparent;擴展資料:
1、常用顏色單詞,比如green(綠色),yellow(黃色),red(紅色),transparent(透明色)等;
2、以#號開頭的六個字符組成的顏色代碼,比如:#FF0000(紅色),#000000(黑色),#F9F900(黃色)等;
3、顏色rgb值,表達方式:rgb(參數(shù)1,參數(shù)2,參數(shù)3),三個參數(shù)分別表示r,g,b1)R:紅色值。正整數(shù) | 百分數(shù)2)G:綠色值。正整數(shù) | 百分數(shù)3)B:藍色值。正整數(shù) | 百分數(shù)4、rgba(參數(shù)1,參數(shù)2,參數(shù)3,參數(shù)4),這種方式前三個參數(shù)與上面第3點種相同,第四個參數(shù)表示透明度,數(shù)值在0-1之間。0表示透明度為0(即透明色),1表示透明度為1(百分百)。