什么是水平对齐三个容器的最佳方法,左侧容器的宽度为 3em,右侧容器的宽度为 3em,中间的宽度为 3em?
layout:{
type : 'hbox',
pack : 'center'
},
items:[
{/*3em*/
xtype:'container',
cls:'left',
html:'left text',
},
{
xtype:'container',
cls:'middle',
html:'middle text',
},
{/*3em*/
xtype:'container',
cls:'right',
html:'right text',
},
]
我很好奇我是否最好使用纯 css和float:left;
,或者可以用于此目的?float:right;
overflow:hidden;
flex