这个代码为什么图片不能居中,标签aa的margin:0 auto;不可以居中吗
p标签默认占满了一整行,想让图片居中 写
.aa{text-align: center;}
设置宽度,应该就可以了,或者用flex
.aa{ display: flex; align-items: center; justify-content: center; }