欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

【已解决】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;
}

 

相关标签: CSS 元素居中