使用CSS调整HTML元素的形状

时间:2015-11-29 19:54:54

标签: html css

我想使用CSS在div类中将9个HTML元素制作成相等的正方形。但是,当测量表明它们应该是正方形时,它们是矩形的。

这是我的HTML代码:

<div class= "gameboard">
<input type="button" id="button1" onclick="playerMove('button1')"/><input type="button" id="button2" onclick="playerMove('button2')"/><input type="button" id="button3" onclick="playerMove('button3')"/>
<input type="button" id="button4" onclick="playerMove('button4')"/><input type="button" id="button5" onclick="playerMove('button5')"/><input type="button" id="button6" onclick="playerMove('button6')"/>
<input type="button" id="button7" onclick="playerMove('button7')"/><input type="button" id="button8" onclick="playerMove('button8')"/><input type="button" id="button9" onclick="playerMove('button9')"/>
</div>

这是我的CSS代码:

.gameboard {

    width: 600px;
    height: 600px;
    margin: auto;
    border-radius: 20px;
}

input {
    width: 200px;
    height: 200px;
    font-size: 70px;

}

1 个答案:

答案 0 :(得分:0)

尝试将其marginpadding重置为0并查看其是否有效。