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.
当我在站点中的帖子中使用小册子/横幅类型图像时,该图像无法正确显示。这显示图像溢出。我该如何解决这个问题?
现场直播。
可能是问题的CSS:
#postbox p img { border: 1px solid #5F9EB8; display: block; padding: 4px; }
也许给图像一个 100% 的宽度和一个自动高度可能会有所帮助?
#postbox p img { display: block; border: 1px solid #5F9EB8; padding: 1%; width: 98%; height: auto; }