博客列表 >3.23PHP线上培训作业

3.23PHP线上培训作业

小丑的博客
小丑的博客原创
2018年03月24日 13:42:00791浏览

线上培训第七天

代码:

实例

<!DOCTYPE html>
<html lang="en">
<head>
	<meta charset="UTF-8">
	<title>Document</title>
	<style type="text/css">
		
		/*设置块元素属性*/
		.ta1,.ta2,.ta3{
			width: 200px;
			height: 200px;
			background-color: #fcd;
			text-align: center;
			display: table-cell;
			vertical-align: middle;	
		}
		.ta4{
			width: 200px;
			height: 200px;
			background-color: #fcd;
			text-align: center;
			display: table-cell;
			vertical-align: bottom;	
		}

		.ta1 a{
			line-height: 200px;				
		}

		/*块级元素水平居中*/
		.ta2 a{
			margin: auto;					
		}
		/*设置图片大小*/
		.ta3 img{
			width: 150px;	
			height: 150px;				
		}
		/*设置ul零边距*/
		.ta4 ul{
			padding-left: 0px;
		}
		/*将元素显示为行内元素*/
		.ta4 li{
			list-style: none;
			display:inline;
		}
		/*连接无下划线*/
		a{
			text-decoration: none;	
		}
		/*增添连接动作*/
		a:hover{
			text-decoration: underline;
			color: red;
			font-size: 1.5em;
		}
	</style>
</head>
<body>

<div class="ta1">	
	<a href="">PHP线上学习!</a>
</div>

<hr>

<div class="ta2">	
	<a href="">PHP线上学习!</a><br>
	好好学习,天天向上!
</div>

<hr>

<div class="ta3">	
	<img src="../image/top1.jpg">
</div>

<hr>
<div class="ta4">
	<ul>
		<li>第一页</li>
		<li>第二页</li>
		<li>第三页</li>
	</ul>
</div>

</body>
</html>

运行实例 »

点击 "运行实例" 按钮查看在线实例

手抄作业:
1.jpg2.jpg3.jpg

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