3

我有一个固定宽度和居中的容器。在容器内部,我有两个相对于窗口并排的 DIV 位置。在这些 Div 中,我还有其他想要居中的内容(最好是容器)。

这是简化的代码:http: //jsfiddle.net/jTpGs/

<!DOCTYPE html>
<html>
<head>
<meta charset=utf-8 />
<style>
 #container {
 width: 960px;
 height: 1000px;
 background: red;
 margin: 0 auto;
 }  

#windowdiv {
height: 200px;
background: purple;
padding-top: 20px;
position: absolute;
left: 0;
right: 30%;
top: 25px;
}
#windowdiv2 {
height: 200px;
background: blue;
padding-top: 20px;
position: absolute;
left: 60%;
right: 0;
top: 10px;

}

</style>
</head>
<body>
  <div id='container'>

     <div id='windowdiv'>
        <p>some content</p>
     </div>
     <div id='windowdiv2'>
       <p>some content</p>
     </div>
 </div>
</body>
</html>
4

1 回答 1

0

将此添加到您的 CSS 以使您的文本在这些框的中间居中:

​#windowdiv p, #windowdiv2 p {
    ​text-align: center;
    ​height: 100%;
    ​line-height: 180px;   
}​

这是假设您的盒子是固定高度的,因为我们设置了行高。(200px - 20px (padding-top) = 180px)

于 2012-12-19T03:29:42.600 回答