2012-02-18 112 views
-1

我有一個div,我該怎麼做才能讓位置:固定的工作做好

它的寬度爲200像素,高度爲150像素。

我想div的位置的風格是固定

要使其水平居中,垂直居中

+2

太糟糕了,它不是一個bukket。我聽說有一隻海象正在尋找一顆。 – 2012-02-18 03:43:04

+0

你google吧! http://css-tricks.com/snippets/css/exactly-center-an-imagediv-horizo​​ntally-and-vertically/ – mrtsherman 2012-02-18 03:44:00

回答

2

試試這個:

div{ 
    position:fixed; 
    margin:auto; 
    left:0; right:0; top:0; bottom:0; 
    width:200px; height:150px; 
} 
相關問題