我正在尝试应用列 css,以便我可以水平显示页面中的内容。但是当我在 body 上设置 padding-right 时。我发现它不起作用?为什么?此外,有时,最后会有空白列
body{
height: 200px;
text-align: center;
-webkit-column-width: 608px;
-webkit-column-gap: 160px;
padding: 80px 80px 100px 80px;
}
更新为回复@jimjimmy1995
<html>
<style type="text/css">
.div{
height: 344px;
text-align: center;
-webkit-column-width: 608px;
-webkit-column-gap: 160px;
}
body{
margin: 80px 80px 100px 80px;
}
</style>
</head>
<body>
<div class='div'>
<p> blablablabla. </p>
</div>
</body>
</html>