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.
我希望在窗口宽度调整大小时一起动态调整 div 高度/宽度,就像在 (background-size:100%) 中一样,我更喜欢“如果可能”只使用 CSS。
先感谢您 :)
如果您选择width:100%,height:auto它将使 div 尺寸响应调整窗口大小。
width:100%
height:auto
您可以设置宽度:100%;和高度:自动;也尝试对该 div 内的图像执行相同的操作
img{ width:100% height:auto; }
这将使 img 响应并且不会溢出父 div
你也可以使用这个
img { max-width: 100%; height: auto; }
如果必须,图像将按比例缩小,但永远不会放大到大于其原始大小