问题描述
我是 React 新手,尝试使用 react-multi-carousel 构建品牌轮播。 图像显示正确,但我想将图像居中。试图编写它不适用于轮播的 css。这是如何实现的,或者我必须使用任何其他轮播吗? `
<Grid item xs={12}>
<Carousel
responsive={responsive}
infinite={true}
arrows={true}>
<Image src={abt.logo_carousel.url}responsive/>
<Image src={abt.logo_carousel1.url}responsive/>
<Image src={abt.logo_carousel2.url}responsive/>
<Image src={abt.logo_carousel3.url}responsive/>
</Carousel>
</Grid>`
解决方法
在你的标签里面写样式。像这样
<img src="..." style={{width:300,marginLeft:"auto",marginRight:"auto"}} />