1
0
Fork 0
mirror of https://github.com/mat-1/matdoesdev.git synced 2025-08-02 14:46:04 +00:00

try to fix blog post list in ie5

This commit is contained in:
mat 2023-11-26 23:55:47 -06:00
parent 8d16424a74
commit 09aa775981
2 changed files with 10 additions and 2 deletions

View file

@ -66,7 +66,9 @@
</td>
<td>
<div class="sidebar-list">
<div>
<h2>BLOG POSTS</h2>
</div>
{#each posts as post}
<div><a href={post.slug}>{post.title}</a></div>
{/each}
@ -108,7 +110,7 @@
</tr>
<tr>
<td>
<img src="http://counter.matdoes.dev" alt="visitor counter" id="counter" />
<img src="//counter.matdoes.dev" alt="visitor counter" id="counter" />
</td>
</tr>
</table>

View file

@ -20,3 +20,9 @@ img {
/* very old browsers add borders to images */
border: none;
}
*,
*:before,
*:after {
box-sizing: border-box;
}