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

View file

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