Maison > Questions et réponses > le corps du texte
Pourquoi mon image est-elle alignée au centre mais pas aux extrémités ? Je suis tellement confus..
<Box sx={{ display: 'flex', minHeight: '100vh', alignItems: 'center', flexGrow: 1, }}> <Container maxWidth="sm"> <img src="https://static.vecteezy.com/system/resources/previews/001/200/294/original/house-png.png" width={200} alt="img" /> <LinearProgress sx={{ mt: 4 }} /> </Container> </Box>
P粉5485126372023-09-09 12:34:07
Si vous souhaitez centrer le contenu, vous devez utiliser l'attribut "justifyContent: 'center'". De plus, il y a quelques problèmes avec l'élément "Conteneur", vous pouvez utiliser .
Vérifiez si c'est ce que vous voulez réaliser
<Box sx={{ display: "flex", minHeight: "100vh", alignItems: "center", justifyContent: "center", flexGrow: 1 }} > <Box> <img src="https://static.vecteezy.com/system/resources/previews/001/200/294/original/house-png.png" width={200} alt="img" /> <LinearProgress sx={{ mt: 4 }} /> </Box> </Box>
P粉6804879672023-09-09 09:42:29
Vous pouvez utiliser Box
包裹 img
<Box sx={{ display: 'flex', minHeight: '100vh', alignItems: "center", flexGrow: 1, }} > <Container maxWidth="sm"> <Box sx={{ display: 'flex', justifyContent: "center" }} > <img src="https://static.vecteezy.com/system/resources/previews/001/200/294/original/house-png.png" width={200} alt="img" /> </Box> <LinearProgress sx={{ mt: 4 }} /> </Container> </Box>