更改一个表类的 th、td 标签的 CSS 会更改所有其他表

C.A*_*bay 1 html css html-table

我正在尝试调整一组表类的填充,但我正在应用的更改出现在所有其他表上。这是我的CSS:

.my_table th, td{
   font-size: 14px;
   padding-bottom: 2em;
}
Run Code Online (Sandbox Code Playgroud)

这是该表的相关 html:

<table border="1" class="dataframe table my_table">
  <tbody>
    <tr>
      <th>somethingsomething</th>
      <td>somethingsomething</td>
    </tr>
    <tr>
      <th>somethingsomething</th>
      <td>somethingsomething</td>
    </tr>
Run Code Online (Sandbox Code Playgroud)

小智 6

您还需要将 .my_table 类放入 td 元素

.my_table th, .my_table td{
  font-size: 14px;
  padding-bottom: 2em;
}
Run Code Online (Sandbox Code Playgroud)