티스토리 뷰

■ opacity
: 텍스트까지 전체 다 투명하게

■ background-color:rgba
: 배경만 투명하게
: background-color:rgba(255,255,255,0.5)
   마지막 4번째 칸 0(투명) ~ 1(불투명)  


<!DOCTYPE HTML>
<html lang="KO">
<head>
<title> New Document </title>
<meta charset="UTF-8">
<link rel="stylesheet" link href="css/style2.css">
<style>
p{margin-top:20px; height:100px; background-color:#fff;}
.box{width:500px; height:500px; border:1px solid #333;  background:url(images/opbg.jpg) no-repeat;}

.text01{opacity:0.5;}/*텍스트까지 전체 다 투명하게*/
.text02{background-color:rgba(255,255,255,0.5)}/*배경만투명하게*/
</style>
</head>
 
<!--그라디언트!!-->
<body>
<div class="box">
   <p class="text01">html5</p>
   <p class="text02">html5</p>
   <p class="text03">html5</p>
</div>
</body>
</html>


Total
Today
Yesterday
최근에 올라온 글
«   2025/01   »
1 2 3 4
5 6 7 8 9 10 11
12 13 14 15 16 17 18
19 20 21 22 23 24 25
26 27 28 29 30 31