fix blog post grammer

This commit is contained in:
freya 2024-09-25 16:11:04 +00:00
parent d5fed52363
commit 184b4162d6

View file

@ -42,9 +42,9 @@ nothing else!
### Firefox First ### Firefox First
To tackle this I decided to fix things in stages and try to get old firefox To tackle this I decided to fix things in stages and try to get old firefox
working first. And to start I decided to pick Firefox 10, released in 2012. working first. To start, I decided to pick Firefox 10, which was released in 2012.
And this was a much better starting point since the website was still broken, This was a much better starting point since eveb though the website was still broken,
but some styling was still working: ![Website FF10](public/blog/site2.jpg) somee styling was still working: ![Website FF10](public/blog/site2.jpg)
The background seemed to work, and images were loading, but fonts, font colors, The background seemed to work, and images were loading, but fonts, font colors,
and just the entire layout was broken. and just the entire layout was broken.
@ -72,7 +72,7 @@ For eamaple:
} }
``` ```
Now i only have to type `@linear-gradient(...)` and it will compile down to Now i only have to type `@linear-gradient(...)`, and it will compile down to
all the vendor prefixes! all the vendor prefixes!
#### what broke #### what broke
@ -94,9 +94,9 @@ Now some of you may see flex box styles in there and think:
> Wait IE6 doesnt support Flex?! > Wait IE6 doesnt support Flex?!
..and you would be correct. As I started getting FF3.5, then FF2 to work. Even ..and you would be correct. As I started fixing FF3.5, then FF2, even
more things broke. But as soon as I made the jump to suppot IE9, all hell broke more things broke. I fixed those, but again, as soon as I made the jump to suppot IE9,
loose. all hell broke loose.
### the layout ### the layout
@ -134,7 +134,7 @@ then apply that to every URL.
Another things that IE6 doesnt support is fonts... kinda. It does not support Another things that IE6 doesnt support is fonts... kinda. It does not support
TTF, OTF, WOFF, WOFF2, or any font format besides one called embedded opentype TTF, OTF, WOFF, WOFF2, or any font format besides one called embedded opentype
i.e. .eot. So all I had to do to fix that was generate eot font files from my (i.e. .eot). So all I had to do to fix that was generate eot font files from my
ttf ones, and add those in. Now my font-family mixin looks like this: ttf ones, and add those in. Now my font-family mixin looks like this:
```scss ```scss