【已解决】CSS: 元素在div中居中

描述:

 如题。

解决: 

// 上下、左右均居中
#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;
}

 以上。

你可能感兴趣的:(前端)