mirror of https://gitlab.com/curben/blog
post: fix embedded css
This commit is contained in:
parent
2e017ecf98
commit
c0998a3d13
|
@ -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.
|
||||||
|
|
Loading…
Reference in New Issue