码迷,mamicode.com
首页 > Web开发 > 详细

css初涉

时间:2016-11-19 23:17:14      阅读:170      评论:0      收藏:0      [点我收藏+]

标签:body   styles   lib   XML   head   desc   pad   ack   size   

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="zh-cn">
<head>
	<meta http-equiv="Content-Type" content="text/html;charset=UTF-8" />
	<title>网页标题</title>
	<meta name="keywords" content="关键字列表" />
	<meta name="description" content="网页描述" />
	<link rel="stylesheet" type="text/css" href="" />
	<style type="text/css">
		*{
			margin:0;
			padding:0;
			color:white;
		 }
		h1{
			color:blue;
		  }
		p{
			color:green;
		 }
		h3{
			color:red;
		  }
		h1,h3{
			text-align:center;
			text-decoration:overline;
		     }
		.div1{
			font-size:x-large !important;
			background-color:silver;
		     }
		#div1{
			font-size:xx-large;
			}
		#main{
			background-color:black;
			 }
	</style>
</head>
<body>
	<div id="main">
		<h1 style="color:yellow">只是一个一级标签</h1>
		<p>只是一个段落</p>
		<h3>这是一个三级标签</h3>
		<div class="div1" id="div1">
			bilibili
		</div>
		<div id="div1">
			dilidili
		</div>
		<!--!important > 标签内style > id选择器 > 类选择器 > 标签选择器 > 通配符选择器-->
	</div>
</body>
</html>

  

css初涉

标签:body   styles   lib   XML   head   desc   pad   ack   size   

原文地址:http://www.cnblogs.com/nasca/p/6081581.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!