使用 CSS 样式内容的默认渲染打字稿,但擦除其周围的 div

发布于 2024-12-26 13:22:34 字数 1431 浏览 2 评论 0原文

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

祁梦 2025-01-02 13:22:34

您可以在没有 div 的情况下获得渲染,但不是您想要的方式。基本上,您必须更改 tt_content 中定义的每种可能的内容类型。请参阅 Typoscript 对象浏览器以了解如何在 tt_content 节点中定义每种内容类型。

lib.inhalt = COA
lib.inhalt {
  10 < styles.content.get

  10.stdWrap.append < styles.content.getRight
  10.stdWrap.append {
    renderObj < tt_content
    renderObj {
      # Your modifications of tt_content go here
    }
  }
}

You can get the rendering without divs but not the way you had in mind. Basically you would have to alter each of the possible content types that are defined in the tt_content. See Typoscript Object Browser to see how each content type is defined in the tt_content node.

lib.inhalt = COA
lib.inhalt {
  10 < styles.content.get

  10.stdWrap.append < styles.content.getRight
  10.stdWrap.append {
    renderObj < tt_content
    renderObj {
      # Your modifications of tt_content go here
    }
  }
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文