The contents of the container components are arranged from left to right.
1<Container style={{ background:'#eee'}}>2 3</Container>4
1<>2 <Container size="xl" padding="xl" style={{ background: '#eee' }}>3 container4 </Container>5 <Container size="sm" padding="sm" style={{ marginTop:'30px',background: '#eee'}}>6 container7 </Container>8</>9
1<Container fluid style={{ background: '#eee'}}>2 container3</Container>4