1. 程式人生 > >一些非常好看的背景顏色漸變

一些非常好看的背景顏色漸變

漸變是css3的其中一項,但是基本都沒人用,因為不相容IE8,但漸變顏色好看基本就為你的網站提供了飛躍般的提升,若要使用請摳圖做背景。漸變色系網站http://color.oulu.me/ 下面我提供幾串色系程式碼。更多的選擇請移步連結

<!DOCTYPE html>
<html>
	<head>
		<meta charset="UTF-8">
		<title></title>
		<style type="text/css">
			div{
				width: 200px;
				height: 200px;
				border-radius:50% ;
			}
			div:nth-of-type(1){
				background-image: linear-gradient(to right, #243949 0%, #517fa4 100%);
			}
			div:nth-of-type(2){
				background-image: linear-gradient(to top, #fff1eb 0%, #ace0f9 100%);
			}
			div:nth-of-type(3){
				background-image: linear-gradient(to top, #d5dee7 0%, #ffafbd 0%, #c9ffbf 100%);
			}
		</style>
	</head>
	<body>
		<div></div>
		
		<div></div>
		
		<div></div>
	</body>
</html>