Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我是新来的,在此先感谢。
我现在如何将 ipad 中的顶部滑块图像居中对齐,图像是左对齐的。
请看下面的链接,
http://psd2htmlexpert.com/examples/Baytreefloristhtml/
亲切的问候,
要使图像居中,您可以使用以下代码段:
img { display: block; margin: 0 auto; width: 80%; }
图像默认是内联元素,因此您需要在调整边距之前将其设为块元素。简单地在元素的auto每一侧划分边距,因此最终在中间。
auto
(我添加了宽度:80%;因为它不能和它的父级一样宽,因为这样就没有边距可以分割了。)
演示