2020-01-01
Style markdown images
When using markdown, you may need to style specific images.
Here is a solution that makes it possible without HTML clutter.
Markdown
![Image](image.jpg#small)
CSS
img[src*="#small"] {
width:150px;
height:100px;
}
Comments