更改整个字体的大小 table

Changing size of font for the whole table

很抱歉重新发布这个问题。我在这里

找到了解决方案

但是它说我需要 50 分才能添加评论,所以这就是为什么我要针对同一主题创建另一个问题。抱歉

我正在尝试增加整个 table 的字体大小。 table 我使用愚蠢的块系统在最新版本的 wordpress 中创建。我尝试在块的 HTML 编辑面板中使用此解决方案 table tbody tr td { 字体大小:44px};

但它在预览时对字体大小没有任何影响。任何人都可以帮助我或告诉我应该将此代码放在代码行中的什么位置,以便它完成我想做的事情吗?

顺便说一句,我的编码经验为零,我已经在谷歌上搜索这个问题好几个小时了。甚至在 Udemy 注册了 CSS class,因为我感到非常沮丧。预先感谢您的帮助。

<figure class="wp-block-table">

table tbody tr td {  <------this is what I inserted according to other info I found on this site--->
font-size: 44px};

<table class=""><tbody><tr><td><span style="text-decoration: underline;"> 
<strong>McCall Carnival Time</strong></span></td><td><span style="text-decoration: underline;"> 
<strong>McCall Carnival Event Description</strong></span></td><td><span style="text-decoration: 
underline;"><strong>McCall Carnival Event Location</strong> </span>  </td></tr><tr><td></td><td> 
</td><td></td></tr><tr><td>
All Day
</td><td>

CSS 代码需要包装在 <style> 标签中或通过 <link> 标签作为外部文件包含在内。

<figure class="wp-block-table">
  <style>
    table tbody tr td {
      font-size: 44px;
    }
  </style>

  <table>
    <!-- The rest of your code -->
  </table>
</figure>