首页 > 解决方案 > 预测表上的 LiveScore 自动更新

问题描述

我为我的网站创建了一个预测表,但我希望从 livecore 中自动更新我的表。请任何人都可以帮助我正确的代码

这是html表

<!DOCTYPE html>

<html lang="en">
  <body>
    <table>
      <tr>
        <th colspan="2"><b>England » Premier</b></th>
        <th><b>Prediction</b></th>
      </tr>
      <tr>
        <td> &nbsp;24-06:20:16</td>
        <td>Red Bull Bragantino <b style="color:red"> &nbsp;2 : 1 &nbsp;</b> Ponte Preta</td>
        <td <td style="background-color:none;color:none;"><b>Home Win</b></td>
      </tr>
    </table>
  </body>
</html>

这是css代码

table,
th,
td {
  border: 0px solid black;
  border-collapse: collapse;
}

table {
  width: px;
}

th {
  color: white;
  background-color: black;
}

th,
td {
  font-size: 25pt;
  font-family: Arial;
  text-align: center;
}

td {
  background-color

标签: htmlcss

解决方案


推荐阅读