css渐变多个背景

<style>
		html {
			background: -webkit-linear-gradient(left, yellow, red);
			background: linear-gradient(to left, yellow, red);
			height: 100%;
		}

		body {
			font: 14px/1.5 courier;
			color: #000;
		}
	
		p {
			width: 200px;
			height: 200px;
			padding: 20px;
			margin: 20px 0 0 20px;
			float: left;
			border: 1px solid yellow;
		}
	
		#gradient1 {
			background: #888 url(images/gradientLinear.jpg) repeat-x; /* Background images can be used for browsers that aren't capable of producing gradients */
			background: -webkit-linear-gradient(yellow, red); /* Backup for major browsers that can still handle gradients */
			background: linear-gradient(yellow, red); /* The CSS3 standard */
		}
		
		#gradient2 {
			background: -webkit-linear-gradient(right, yellow, red);
			background: linear-gradient(to right, yellow, red);
		}
		
		#gradient3 {
			background: -webkit-linear-gradient(bottom right, yellow, red);
			background: linear-gradient(to bottom right, yellow, red);
		}
		
		#gradient4 {
			background: -webkit-linear-gradient(20deg, yellow, red);
			background: linear-gradient(20deg, yellow, red);
		}
		
		#gradient5 {
			background: -webkit-linear-gradient(hsl(0,100%,50%), hsl(60,100%,50%), hsl(120,100%,50%), hsl(180,100%,50%), hsl(240,100%,50%), hsl(300,100%,50%));
			background: linear-gradient(hsl(0,100%,50%), hsl(60,100%,50%), hsl(120,100%,50%), hsl(180,100%,50%), hsl(240,100%,50%), hsl(300,100%,50%));
		}
		
		#gradient6 {
			background: -webkit-linear-gradient(135deg, hsl(36,100%,50%) 10%, hsl(72,100%,50%) 60%, white 90%);
			background: linear-gradient(135deg, hsl(36,100%,50%) 10%, hsl(72,100%,50%) 60%, white 90%);
		}
	
	</style>
</head>
<body>
	<p id="gradient1"><code>background: linear-gradient(yellow, red);</code></p>
	<p id="gradient2"><code>background: linear-gradient(to right, yellow, red);</code></p>
	<p id="gradient3"><code>background: linear-gradient(to bottom right, yellow, red);</code></p>
	<p id="gradient4"><code>background: linear-gradient(20deg, yellow, red);</code></p>
	<p id="gradient5"><code>background: linear-gradient(hsl(0,100%,50%), hsl(60,100%,50%), hsl(120,100%,50%), hsl(180,100%,50%), hsl(240,100%,50%), hsl(300,100%,50%));</code></p>
	<p id="gradient6"><code>background: linear-gradient(135deg, hsl(36,100%,50%) 10%, hsl(72,100%,50%) 60%, white 90%);</code></p>

预览:

©️李联华的博客网 当前IP地址:3.137.221.33,归属地:俄亥俄州Dublin ,欢迎您的访问!

温馨提示 : 非特殊注明,否则均为李联华的博客原创文章,本站文章未经授权禁止任何形式转载
文章链接:https://www.ooize.com/css-gradient-multiple-backgrounds.html
订阅
提醒
guest
0 评论
内联反馈
查看所有评论
Loading...