BBpress后台编辑主题,回复中的图片前端调试时生效过程记录

社区话题 bbPress 论坛系统(bbPress Forum System) bbPress 的后台编辑话题页面,回复宽度超出容器撑破页面布局 BBpress后台编辑主题,回复中的图片前端调试时生效过程记录

#439

追光
管理员

前端调试时生效过程记录:



const style = document.createElement('style');
style.textContent = `
  .bbp_reply_content img {
    max-width: 100% !important;
    width: auto !important;
    height: auto !important;
    display: block;
  }

  .bbp_reply_content {
    word-break: break-word;
  }
`;
document.head.appendChild(style);