# Styling

## Tables&#x20;

Create an Embed on the page and paste in this style.  It will style any tables within HTML.

{% hint style="info" %}
This particular styling uses a white border coloring, and assumed a darkmode background.  Adjust that to your style guide.&#x20;
{% endhint %}

```html
<style> 
.w-richtext table {
  border-collapse: collapse;
  width: 100%;
}

.w-richtext td {
  border: 1px solid #ffffff;
  padding: 8px;
  vertical-align: top;
}

.w-richtext tr:first-child td {
  background-color: #2f2f2f;
  color: #ffffff;
}
</style> 
```
