控制html块Gutenberg Wordpress的宽度



我正在wordpress中将html放入我的Gutenberg块中。但是如何控制块的显示宽度?

<figure><iframe src="https://cstangor.shinyapps.io/shiny/"></iframe></figure>

我试过这个:但似乎没什么区别。

<figure><iframe src="https://cstangor.shinyapps.io/shiny/" width="“100%”" height="“1000”" frameborder="“0”" allowfullscreen="“allowfullscreen”"></iframe></figure>

属性中有两个双引号。请从属性中删除引号

<figure>
<iframe src="https://cstangor.shinyapps.io/shiny/" width="100%" height="1000" frameborder="0" allowfullscreen="allowfullscreen"></iframe>
</figure>

最新更新