<table>
<tr>
<td>Some longer text to be vertically centered. Did you know that the puffin is not actually the national bird of Iceland? That title goes to the Gyrfalcon, which is the largest falcon in the world.</td>
</tr>
</table>
@import url('https://fonts.googleapis.com/css2?family=Open+Sans&display=swap');
:root {
--const-color-black: #000000;
--const-color-white: #FFFFFF;
--color-header: #D9A443;
--color-main-background: #F9F6F1;
--color-link: #375F9B;
}
body {
font-family: 'Open Sans', sans-serif;
color: var(--const-color-black);
}
* {
box-sizing: border-box;
}
table {
background-color: var(--color-main-background);
border: 1px solid var(--color-link);
margin: 1.0rem auto;
padding: 0 1.0rem;
min-height: 200px;
width: 100%;
}
This Pen doesn't use any external CSS resources.
This Pen doesn't use any external JavaScript resources.