在UL中居中幻灯片图像

时间:2017-08-05 02:20:54

标签: html css html-lists slideshow

我无法将幻灯片图片集中在此页面上:

http://turfsolutions.mrtechnique.com/athletic-field-services/indoor-athletics/

图像位于无序列表中,“margin:0”自动无效。任何帮助表示赞赏。

1 个答案:

答案 0 :(得分:1)

Flex是完成工作的简单方法!
https://www.w3schools.com/cssref/css3_pr_justify-content.asp

#image-slideshow {
  display: flex;
  justify-content: center;
}
相关问题