retypeapp / retype

Retype is an ✨ ultra-high-performance✨ static site generator that builds a website based on simple text files.
https://retype.com
Other
1.02k stars 201 forks source link

Style being overwritten #577

Closed micartey closed 1 year ago

micartey commented 1 year ago

I have an image which should take the whole width

img {
    width: 100%;
}

This works locally. However, once pushed it will just be ignored

micartey commented 1 year ago

Using the img html tag and changing the width does even worse. The image just vanishes.

geoffreymcgill commented 1 year ago

If you are just trying to style one or a few images, then using a custom attribute would be better. For example:

![](/static/sample.jpg){ style="width: 100%" }

Hope this helps.

micartey commented 1 year ago

Thank you, this helps a lot !