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.
我正在开发一个 wordpress 博客主题链接。左侧有个人资料图片。现在根据我的屏幕分辨率 1152*864 是准确的。
当我用不同的屏幕分辨率测试这个网站时会出现问题。图像和内容之间的空间越来越大。
是否有任何解决方案应该兼容所有屏幕分辨率?
提前致谢。
你想'文本对齐:中心;' 你的'div.contentImg'。然后添加一个'margin-left:-850px;' 到图像。
<style> .contentImg { text-align: center; } .contentImg img { margin-left: -850px; } </style>
祝你好运!