微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

html文字居中的样式是什么

html文字居中的样式:1、水平居中样式为“text-align: center;”;2、文字垂直居中样式“line-height:px数值;”;3、文字垂直居中样式“display: flex;align-items: center;”。

本教程操作环境:windows7系统、HTML5版、Dell G3电脑。

html文字居中

1、文字水平居中--text-align: center;

text-align 属性规定元素中的文本的水平对齐方式。

属性通过指定行框与哪个点对齐,从而设置块级元素内文本的水平对齐方式。通过允许用户代理调整行内容中字母和字之间的间隔,可以支持值 justify;不同用户代理可能会得到不同的结果。

描述
left把文本排列到左边。认值:由浏览器决定。
right把文本排列到右边。
center把文本排列到中间。
justify实现两端对齐文本效果
inherit规定应该从父元素继承 text-align 属性的值。

示例:

<!DOCTYPE html>
<html>
	<head>
		<Meta charset=utf-8>
		<style type=text/css>
			h1 {
				text-align: center
			}
			
			h2 {
				text-align: left
			}
			
			h3 {
				text-align: right
			}
		</style>
	</head>

	<body>
		<h1>这是标题 1</h1>
		<h2>这是标题 2</h2>
		<h3>这是标题 3</h3>
	</body>

</html>

效果图:

1.png

【推荐教程:CSS视频教程 、《html视频教程》】

2、文字垂直居中

1)、line-height 使单行文字垂直居中

<!DOCTYPE html>
<html>
	<head>
		<Meta charset=UTF-8>
		<title>css 垂直居中</title>
		<style>
			.Box{
				width: 300px;
			    height: 300px;
			    background: palegoldenrod;
			    line-height:300px;
			}
		</style>
	</head>
	<body>
		<div class=Box>css 垂直居中了--文本文字</div>
	</body>
</html>

效果图:

2.png

2)、CSS3的flex布局 使文字垂直居中

<!DOCTYPE html>
<html>
	<head>
		<Meta charset=UTF-8>
		<title>css 垂直居中</title>
		<style>
			.Box{
				width: 300px;
			    height: 300px;
			    background: paleturquoise;
			    line-height:300px;
			     /*设置为伸缩容器*/
			    display: -webkit-Box;
			    display: -moz-Box;
			    display: -ms-flexBox;
			    display: -webkit-flex;
			    display: flex;
			    /*垂直居中*/
			    -webkit-Box-align: center;/*旧版本*/
			    -moz-Box-align: center;/*旧版本*/
			    -ms-flex-align: center;/*混合版本*/
			    -webkit-align-items: center;/*新版本*/
			    align-items: center;/*新版本*/
			}
		</style>
	</head>
	<body>
		<div class=Box>css 垂直居中--文本文字(弹性布局)</div>
	</body>
</html>

3.png

更多编程相关知识,请访问:编程视频!!

原文地址:https://www.jb51.cc/html/1207106.html

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。

相关推荐