我在使用HTML(垂直和水平)居中div时遇到问题.我的代码看起来像这样:
只有chrome将此div放在屏幕中间. 最佳答案 这样做(垂直和水平): #container{ position: absolute; width: 366px; height: 274px; left: 50%; top: 50%; margin-left: -183px; /* half width */ margin-top: -137px; /* half height */ }
只有chrome将此div放在屏幕中间.
#container{ position: absolute; width: 366px; height: 274px; left: 50%; top: 50%; margin-left: -183px; /* half width */ margin-top: -137px; /* half height */ }