css實現背景透明,內容不透明
阿新 • • 發佈:2018-11-26
- css實現背景和文字均為黑色,背景透明度為0.2,文字不透明:
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>Page Title</title>
<meta name="viewport" content="width=device-width, initial-scale=1" >
<style>
div {
background: rgba(0, 0, 0, 0.2) none repeat scroll !important;/* rgba(0, 0, 0, 0.2) 前三個確定顏色,最後0.2確定透明度 */
/*實現FireFox背景透明,文字不透明*/
background: #ffffff;
filter: Alpha(opacity=20);
/*實現IE背景透明,文字不透明*/
width: 200px ;
height: 300px;
color: #000000;
font-size: 20px;
font-weight: bold;
}
div p {
position: relative;
}
/*實現IE文字不透明*/
</style>
</head>
<body>
<div>
<p style="position: relative;" >這是個background透明但是content不透明的div</p>
</div>
</body>
</html>