我是 Html 新手,我正在尝试将多个 div 水平对齐。我也尝试了浮动属性和显示内联属性,但没有任何东西可以正常工作。任何人都可以建议任何方法吗?
我的代码:
#display2letter
{
width:150px;
height:50px;
background-color:grey;
box: 10px 10px 5px #888888;
}
#display3letter
{
width:150px;
height:50px;
background-color:blue;
box: 10px 10px 5px #888888;
}
#display4letter
{
width:150px;
height:50px;
background-color:grey;
box: 10px 10px 5px #888888;
}
#one
{
position:fixed;
left:23%;
}
#two
{
position:fixed;
left:23%;
}
#three
{
position:fixed;
left:23%;
}
这是小提琴