【已解决】CSS: 元素在div中居中
程序员文章站
2022-05-01 23:27:44
...
// 上下、左右均居中
#gameOver{
width: 373px;
height: 303px;
margin: auto;
top: 0px;
bottom: 0px;
left: 0px;
right: 0px;
}
// 仅上下居中
#gameOver{
width: 373px;
height: 303px;
margin: auto;
top: 0px;
bottom: 0px;
}
// 仅左右居中
#gameOver{
width: 373px;
height: 303px;
margin: auto;
left: 0px;
right: 0px;
}
上一篇: 元素的居中
推荐阅读
-
Div在浏览器中居中显示_html/css_WEB-ITnose
-
Div在浏览器中居中显示_html/css_WEB-ITnose
-
HTML+CSS,让div在屏幕中居中(水平居中+垂直居中)方法总结
-
Vue项目中使用Html+Css使div在页面中居中显示(水平+垂直)
-
css如何实现span在div中水平居中_html/css_WEB-ITnose
-
JS+CSS设置img在DIV中只显示Img垂直居中的部分_javascript技巧
-
JS+CSS设置img在DIV中只显示Img垂直居中的部分_javascript技巧
-
css如何实现span在div中水平居中_html/css_WEB-ITnose
-
CSS在页面布局中实现div垂直居中的方法总结_html/css_WEB-ITnose
-
css如何设置文本在li元素中垂直居中显示_html/css_WEB-ITnose