web前端基礎(11html5和css)

<!DOCTYPE html>
<html>
	<head>
		<meta charset="utf-8">
		<title></title>
		<style type="text/css">
			div{
				border: 2px solid red;
				width:300px;
				height:50px;
				border-radius:25px;
				/*水平 負靠左,右靠上  垂直負上正下*/
				box-shadow:10px 10px 5px #7FFFD4
				
				/* css3 */
				background-color:pink;
				background-image:url(img/32.png);
				background-size: 10px;
				background-clip: border-box;
			}
			h1{
				text-shadow: 5px 5px 5px #008000;
			}
			img{
				border-radius: 70px;
			}
		</style>
	</head>
	<body>
		<h1>中國加油</h1>
		<div>武漢加油!!!</div>
		<img src="img/32.png"  />
	</body>
</html>

 

發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章