欢迎您访问 最编程 本站为您分享编程语言代码,编程技术文章!
您现在的位置是: 首页

如何在div中实现内容居中显示的代码示例

最编程 2024-01-20 08:20:29
...
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Title</title>
</head>

<style rel="stylesheet" type="text/css">
div{
margin: 0 auto;
background-color: #eb974e;
width: 300px;
height: 300px;
}
</style>

<body>
<div>
<p>this is a h5 page</p>
</div>
</body>
</html>

推荐阅读