03-lao-CSS3新增颜色表示和盒子透明

03-lao-CSS3新增颜色表示和盒子透明

03-lao-CSS3新增颜色表示和盒子透明

<head>
		<meta charset="UTF-8">
		<title>颜色</title>
		<style type="text/css">
			.box{
				/* rgba : a:透明度 ,0完全透明~1完全透明*/
				background-color: rgba(44,200,89,1);
				height: 100px;
				width: 100px;
			}
		</style>
	</head>
	<body>
		<div class="box" >
			
		</div>
	</body>

 

03-lao-CSS3新增颜色表示和盒子透明03-lao-CSS3新增颜色表示和盒子透明  

<head>
		<meta charset="UTF-8">
		<title>颜色</title>
		<style type="text/css">
			.box1{
				/* rgba : a:透明度 ,0完全透明~1完全透明*/
				background-color: rgba(44,200,89,1);
				height: 100px;
				width: 100px;
			}
			.box2{     /* 知道就可以了  四个参数 */
				background-color: hsla(120,10%,30%,1);
				width: 200px;
				height: 200px;
			}
		</style>
	</head>
	<body>
		<div class="box1" >
			
		</div>
		<div class="box2" >
			wrw
		</div>
	</body>

03-lao-CSS3新增颜色表示和盒子透明

<html>
	<head>
		<meta charset="UTF-8">
		<title>颜色</title>
		<style type="text/css">
			.box1{
				/* rgba : a:透明度 ,0完全透明~1完全透明*/
				background-color: rgba(44,200,89,1);
				height: 100px;
				width: 100px;
			}
			.box2{     /* 知道就可以了  四个参数 */
				background-color: hsla(120,10%,30%,1);
				width: 200px;
				height: 200px;
				
				/*整个盒子的透明度0~!*/
				opacity: 0.5;
			}
		</style>
	</head>
	<body>
		<div class="box1" >
			
		</div>
		<div class="box2" >
			wrw
		</div>
	</body>

 

 

上一篇:读取iOS通讯录


下一篇:rgba转16js代码