古腾堡 - 在嵌套的宽宽度组上添加全宽背景
我正在尝试在古腾堡的宽幅组上添加全角背景。
我所做的步骤:
- 使用我的背景颜色创建一个全角组
- 在我的全角组内创建一个组
问题:我无法在嵌套组上润湿(在步骤 2 中)
我怎样才能实现这一点?
谢谢 !
I'm trying to add a full-width background on a wide-width group in Gutenberg.
Steps I made :
- create a full-width group with my background color
- create a group inside my full-width group
Issue : I cannot wet the with on the nested group (in step 2)
How can I achieve that ?
Thanks !
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
是的,全宽组内的组可以设置内容宽度和背景颜色,例如:
结果布局:
另外,请检查您的内部组布局是否已将
inherit
设置为 false 并设置contentSize
到您需要的尺寸(支持px、%、em、rem、vw、vh)。如果宽度仍未应用,请检查主题中是否有任何自定义 CSS 或冲突规则,这些规则可能会覆盖宽度。Yes, a Group within a Full Width Group can have a set content width and a background color set, eg:
Resulting layout:
Also check that your inner groups layout has
inherit
set to false and set thecontentSize
to your required size (supports px, %, em, rem, vw, vh). If the width is still not applied, check for any custom CSS or conflicting rules from your theme that could be overriding the width.