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.
所以我有一个网页,但是当我开始缩小窗口的大小时,所有元素开始相互堆叠,看起来很乱。IE
Youtube 只是切断了所有内容,而不是所有图像相互堆叠。我怎样才能达到类似的效果?
默认情况下,块元素的宽度会调整为父元素,因此如果您不以像素为单位width对容器(或min-width)进行修复,则宽度将是100%并且通过调整子元素的大小来调整它。在容器中添加width/ :min-width
width
min-width
100%
#wrapper{ width: 960px; margin: 0 auto; ... }