joomla 如何让网页在浏览器中居中显示
发布网友
发布时间:2024-10-24 02:28
我来回答
共1个回答
热心网友
时间:2024-11-06 15:15
参考百度的话,主要是div 的样式中使用了 margin: 0 auto;
下面是html示例:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>居中显示</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
</head>
<body>
<div style=" margin: 50px auto;height:500px;width:720px;background-color:#abc ">
哈哈,居中了!
</div>
</body>
</html>
讲解:margin:50px auto;
语法:margin:上 右 下 左; 单位是px。
如margin: 10px 5px 20px 10px;
10px表示 上边距为10px,5px表示右边距为5px,以此类推。
auto 表示浏览器计算外边距,这样才能使div居中。这里加入50px是为了让上边距为50px,不需要可直接去掉,改成:margin:auto;