博客列表 >3月23日作业: 常用的四种对齐方式总结

3月23日作业: 常用的四种对齐方式总结

大猩猩的博客
大猩猩的博客原创
2018年03月27日 02:09:12648浏览

实例

<!DOCTYPE html>
<html>
	<head>
		<meta charset="UTF-8">
		<title>常用对齐方式</title>
	</head>
	<style type="text/css">
		.box{
			width: 200px;
			height: 200px;
			background: red;
			text-align: center;
		}
		.box a{
			line-height: 200px;
			text-decoration: none;
			color: #fff;
		}
	   .box1 {
        width: 200px;
        height: 200px;
        background-color: #77f770;
        text-align: center;
        /*以下二个声明可以使块级子元素垂直居中*/
		display: table-cell;  /*设置显示方式为表格单元格*/
		vertical-align: middle; /*设置该单元格内的元素垂直居中*/
    }
        .box1 a{
			text-decoration: none;
			color: #fff;
		}
		.box2{
			width: 200px;
			height: 200px;
			background: chocolate;
			/*以下二个声明可以使块级子元素垂直居中*/
			display: table-cell;  /*设置显示方式为表格单元格*/
			vertical-align: middle; /*设置该单元格内的元素垂直居中*/
			
		}
		.box3{
			width: 100px;
			height: 100px;
			background: darkcyan;
			margin: 0 auto;/*水平居中*/
		}
		.box4 {
			width: 200px;
			height: 200px;
			background-color: #ec51ee;
			text-align: center; 
			/*以下二个声明可以使块级子元素垂直居中*/
			display: table-cell;  /*设置显示方式为表格单元格*/
			vertical-align:bottom; /*设置该单元格内的元素底边居中*/	
		}
		.box4 ul {
			margin: 0;
			padding: 0;
		}
		.box4 li {
			list-style: none;
			display: inline;
		}
	</style>
	<body>
		1、单行文本居中对齐
		<div class="box">
			<a href=""> 单行文本居中对齐</a>
		</div>
		2、多行文本居中对齐
		<div class="box1">
		    <a href="">我是多行文本1</a><br>
		    <a href="">我是多行文本2</a><br>
		    <a href="">我是多行文本3</a>
		</div>
		3、区域居中
		<div class="box2">
			<div class="box3"></div>
		</div>
		4,底部水平居中
		<div class="box4">
		<ul>
			<li><a href="">1</a></li>
			<li><a href="">2</a></li>
			<li><a href="">3</a></li>
			<li><a href="">4</a></li>
			<li><a href="">5</a></li>
		</ul>				
	</div>
	</body>
</html>

运行实例 »

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


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