post: fix embedded css

This commit is contained in:
curben 2019-06-29 18:59:06 +09:30
parent 2e017ecf98
commit c0998a3d13
1 changed files with 1 additions and 4 deletions

View File

@ -33,10 +33,6 @@ The above CSS is to override the default CSS used by FF to display an image. The
```css ```css
@media not print { @media not print {
body {
margin: 0;
}
img { img {
text-align: center; text-align: center;
position: absolute; 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; bottom: 0;
left: 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. The `bottom: 0;` rule is the source of the issue, though it's more of a compatibility issue between DR and FF.