html怎样让div居中

藏色散人
发布: 2023-01-06 11:15:09
原创
37727 人浏览过

html让div居中的方法:1、通过加“

内容
”标签让div居中;2、在div中加入“margin:0 auto属性;”自动调节居中。

html怎样让div居中

本文操作环境:windows7系统、HTML5&&CSS3版、Dell G3电脑。

DIV居中提供两个方法:

1、简单快捷方法就是加

内容
标签。

示例:

<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
<title>center居中</title>
</head>
 
<body>
<center>
<div>我要居中啦</div>
</center>
</body>
</html>
登录后复制

2、div中加入margin:0 auto属性;自动调节居中。

示例2:

<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
<title>margin居中</title>
<style type="text/css">
.d1{
border:1px solid red;
width:200px;
height:200px;
text-align:center;
line-height:40px;
margin:0 auto;
}
</style>
</head>
<body>
<div class="d1">
我是div,我居中啦...
</div>
</body>
</html>
登录后复制

推荐教程:html视频教程css视频教程

以上是html怎样让div居中的详细内容。更多信息请关注PHP中文网其他相关文章!

相关标签:
来源:php.cn
本站声明
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn
热门教程
更多>
最新下载
更多>
网站特效
网站源码
网站素材
前端模板
关于我们 免责声明 Sitemap
PHP中文网:公益在线PHP培训,帮助PHP学习者快速成长!