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.
我采用了 WP 主题并根据我的需要对其进行了定制。我现在遇到了 CSS 的问题。
全尺寸看起来不错
但是,当调整大小或在 iPad 上查看时,标题会失真。如您所见,右上角的 RSS 图标已超过彩色标题。
在这方面的任何指针将不胜感激。
如果您需要更多信息,请告诉我。
如果您需要使用 Firebug/其他检查器工具进行检查,这里是我的网站
如果一个块溢出,它不会扩展并行块。div#header div#menu与div#footer容器div#content平行放置应该可以解决问题。
div#header
div#menu
div#footer
div#content
CSS替代方式:
在这种情况下,将浮动固定添加到容器和所有子项中:
#top-overlay, #header, #menu, #content, #footer { float: left; min-width: 100%; }