博客列表 >2019.4.24作业

2019.4.24作业

关超的博客
关超的博客原创
2019年04月24日 23:13:56606浏览
<!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">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>welcome</title>
<link rel="stylesheet" href="style.css" />
<style type="text/css">
	h1{ background-color:yellow;}
	#iddemo1{ background:blue;}
	.demo1{ width:800px; height:50px; background-color:#ccc;}
</style>
</head>

<body>
<h1 class="demo1" style="background-color:red;">写一个案例,演示CSS中的选择器优先级(忽略JS)</h1>
<h1 class="demo1" id="iddemo1">写一个案例,演示CSS中的选择器优先级(忽略JS)</h1>
<h1 class="demo1">写一个案例,演示CSS中的选择器优先级(忽略JS)</h1>
<h1>写一个案例,演示CSS中的选择器优先级(忽略JS)</h1>

<p class="demo2">写一个案例,演示CSS中的选择器优先级(忽略JS)</p>
<p class="demo2">写一个案例,演示CSS中的选择器优先级(忽略JS)</p>
<p class="demo2">写一个案例,演示CSS中的选择器优先级(忽略JS)</p>

</body>
</html>

QQ图片20190424225820.png


<!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">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>页面中一切皆盒子</title>
<style type="text/css">
	.div1{ 
			width:600px;
	 		height:400px; 
			background:#ccc;
			padding-top:30px;
			padding-right:50px;
			padding-bottom:60px;
			padding-left:40px;
			
			padding:10px 20px 30px 40px;
			
			border-top:10px solid blue;
			border-right:10px dashed red;
			border-bottom:10px solid yellow;
			border-left:10px dashed green;
			
			border:10px solid pink;
			}
	.div2{
		height:300px;
		background-color:#ff6700;
		margin: 50px auto;
		padding: 30px 40px;
		
		}
</style>
</head>

<body>
<div class="div1">
	<div class="div2">
		<p>写一个盒模型简单案例,体会padding/border的简写规则</p>
    </div>
</div>
</body>
</html>


QQ图片20190424231252.png

声明:本文内容转载自脚本之家,由网友自发贡献,版权归原作者所有,如您发现涉嫌抄袭侵权,请联系admin@php.cn 核实处理。
全部评论
文明上网理性发言,请遵守新闻评论服务协议