From c0998a3d13c31de8e47f29c19c96334529d5dce8 Mon Sep 17 00:00:00 2001 From: curben Date: Sat, 29 Jun 2019 18:59:06 +0930 Subject: [PATCH] post: fix embedded css --- source/_posts/view-image-dark-reader-firefox.md | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/source/_posts/view-image-dark-reader-firefox.md b/source/_posts/view-image-dark-reader-firefox.md index e03bca7..d003365 100644 --- a/source/_posts/view-image-dark-reader-firefox.md +++ b/source/_posts/view-image-dark-reader-firefox.md @@ -33,10 +33,6 @@ The above CSS is to override the default CSS used by FF to display an image. The ```css @media not print { - body { - margin: 0; - } - img { text-align: center; position: absolute; @@ -46,6 +42,7 @@ The above CSS is to override the default CSS used by FF to display an image. The bottom: 0; left: 0; } +} ``` The `bottom: 0;` rule is the source of the issue, though it's more of a compatibility issue between DR and FF.