Fix broken images: replace HTML with Markdown
This commit is contained in:
parent
828a7ce293
commit
1729f1daeb
15 changed files with 55 additions and 57 deletions
|
|
@ -154,3 +154,18 @@ footer {
|
|||
text-align: right;
|
||||
}
|
||||
|
||||
/* image placement (https://stackoverflow.com/questions/255170/markdown-and-image-alignment) */
|
||||
img[src*='#left'] {
|
||||
float: left;
|
||||
margin-left: 20px;
|
||||
margin-right: 20px;
|
||||
}
|
||||
img[src*='#right'] {
|
||||
float: right;
|
||||
margin-left: 20px;
|
||||
margin-right: 20px;
|
||||
}
|
||||
img[src*='#center'] {
|
||||
display: block;
|
||||
margin: auto;
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue