css --- > 好看的样式积累

在这里插入图片描述

// CSS
h1 {
			text-shadow: 0 0 5px #F00;
			color: white;
			font-size: 60px;
	}
// HTML
<h1> Hello World! </h1>

在这里插入图片描述

// CSS
h1 {
			text-shadow: 2px 2px 4px #000;
			color: white;
			font-size: 70px;
	}
// HTML
<h1> Hello World! </h1>

在这里插入图片描述

// css
.test{
			height: 200px;
			width: 200px;
			border-radius: 50%;
			background: -webkit-radial-gradient(red, yellow, white);     
			background: -o-radial-gradient(red, yellow, white);   
			background: -moz-radial-gradient(red, yellow, white);   
			background: radial-gradient(red, yellow, white );   
		}
// HTML
<div class='test'> </div>

猜你喜欢

转载自blog.csdn.net/piano9425/article/details/89065032