tableに角丸がうまく反映されない
```html index.html
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Hello Bulma!</title>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bulma@0.9.4/css/bulma.min.css">
<link rel="stylesheet" href="style.css">
</head>
<body>
<section class="section">
<div class="container">
<h1 class="title foreground has-text-centered is-size-1">
作業用タイマー
</h1>
<table class="table foreground is-size-1 is-fullwidth has-text-centered">
<tr>
<td>現在時刻</td><td>hh:mm:ss</td>
</tr>
<tr>
<td>残り時間</td><td>mm:ss</td>
</tr>
</table>
</div>
</section>
</body>
</html>
```
```css style.css
.foreground{
background-color: rgba(255, 255, 255, 0.2);
backdrop-filter: blur(2px);
border-radius: 8px;
border: none;
border-right: 1px solid rgba(255, 255, 255, 0.5);
border-bottom: 1px solid #fff;
padding: 10px;
color: #000 ;
}
html{
background-image: url('ubuntu-16-04-lts-Desktop-fondo.png');
background-size: cover;
}
```
このコードについてなのですが、角丸がうまく反映されません。
h1タグはきちんと四方が角丸になっているのですか、tableは右下が角丸ではなく、右と下に指定した1pxのボーダーも飛び出しています。
edgeとfirefoxどちらも同じです。
どなたか直し方を教えてください。
あと関係ないですけどここでもそろそろmarkdownとシンタックスハイライト対応してくれませんかね?