JSFiddle - React, Tailwind, and code Playground

HTML

<h1>投信投顧公會境內基金配息資料</h1>
 <table>
   <tr>
  <th>主要欄位說明<br>
<span>*粗體欄位為資料標準欄位</span></th>
<td>基金類型、基金統編、基金名稱、配息幣別、配息基準日、除息日、收益分配發放日、每單位分派金額、公告日期</td>
  </tr>
   <tr>
    <th>資料資源下載網址</th>
      <td><a href="https://stat.fsc.gov.tw/FSC_OAS3_RESTORE/API/CSV_EXPORT?TableID=101&OUTPUT_FILE=Y">下載網址</a></td>
  </tr>
   <tr>
   <th>提供機關</th>
     <td><a href="https://data.gov.tw/datasets/search?p=1&size=10&s=pubdate.date_desc&rat=712">金融監督管理委員會證券期貨局</a></td>
 </tr>
   <tr>
   <th>提供機關聯絡人姓名</th>
     <td>陳先生</td>
 </tr>
   <tr>
   <th>更新頻率</th>
   <td>每月</td>
 </tr>
   <tr>
   <th>授權方式</th>
     <td>政府資料開放授權條款-第1版</td>
 </tr>
   <tr>
   <th>計費方式</th>
     <td>免費</td>
 </tr>
   <tr>
   <th>上架日期</th>
     <td>2023-02-03</td>
 </tr>
   <tr>
   <th>資料集類型</th>
     <td>原始資料</td>
 </tr>
   <tr>
   <th>詮釋資料更新時間</th>
     <td>2023-02-02 16:38</td>
 </tr>
   <tr>
   <th>主題分類</th>
     <td>政府統計</td>
 </tr>
   <tr>
   <th>服務分類</th>
     <td><a href="https://data.gov.tw/datasets/search?p=1&size=10&s=pubdate.date_desc&rct=254">投資理財</a></td>
 </tr>
   <tr>
   <th>資料集分類</th>
     <td>開放資料</td>
 </tr>
   <tr>
     <th>關鍵字</th>
       <td><a href="https://data.gov.tw/datasets/search?tg=40427&q=%E6%94%BF%E5%BA%9C%E7%B5%B1%E8%A8%88"> 政府統計</a></td>
   </tr>
   <tr>
     <th>相關網址</th>
       <td></td>
   </tr>
   <tr>
     <th>備註</th>
       <td>授權說明網址: http://data.gov.tw/license<br>OAS標準之API說明文件網址https://stat.fsc.gov.tw/FSC_OAS3_RESTORE/swagger/docs/v1</td>
   </tr>
</table>

CSS

* {
    padding: 0;
    margin: 0;
}
h1{
 margin-top: 10px;
 margin-bottom: 25px;
}
table{
  border-top: 1px solid #dcdfe6;
    border-left: 1px solid #dcdfe6;
    border-right: 1px solid #dcdfe6;
}
th {
background-color: #e9edf2;
color: #303133;
width: 160px;
min-width: 100px;
padding: 10px;
font-family: "Noto Sans TC","helvatica","Arial",sans-serif,"微軟正黑體";
border-bottom: 1px solid #dcdfe6;
}
span {
  font-size: 0.5px;
}
td {
  display: table-cell;
    line-height: 1.5;
    color: #303133;
    padding: 10px;
    border-bottom: 1px solid #dcdfe6;
}
a{
      background-color: #c0dae7;
    display: inline-block;
    height: 32px;
    padding: 0 10px;
    line-height: 30px;
    font-size: .75rem;
    color: #0079b7;
    border: 1px solid #d6e5f2;
    border-radius: 4px;
    box-sizing: border-box;
    white-space: nowrap;

}