在以下文档中,是否可以水平居中内部div,或以其他方式使文本V和H都以outer
class div为中心?垂直和水平居中文本
一些限制(抱歉在开始时没有指定): 1.不应指定固定宽度,因为否则解决方案是微不足道的; 2.没有JavaScript,只是纯粹的CSS和HTML。
<!DOCTYPE html>
<html>
<head>
<title>the title</title>
<style>
div.outer {
/* ? */
}
div.inner {
display: table-cell;
min-height: 100px;
vertical-align: middle;
}
</style>
</head>
<body>
<div class="outer">
<div class="inner">
<p>Vertically centered text. How to center it horizontally?</p>
</div>
<div>
</body>
</html>
似乎它的工作完美!非常感谢! –