在以下文檔中,是否可以水平居中內部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>
似乎它的工作完美!非常感謝! –