Fix not setting max size incorctly
This commit is contained in:
parent
2c5737e4cd
commit
4bbed56600
1 changed files with 4 additions and 4 deletions
|
@ -22,15 +22,15 @@ hr {
|
|||
img {
|
||||
display: block;
|
||||
margin: auto;
|
||||
max-width: 800;
|
||||
max-height: 800;
|
||||
max-width: 800px;
|
||||
max-height: 800px;
|
||||
}
|
||||
|
||||
video {
|
||||
display: block;
|
||||
margin: auto;
|
||||
max-width: 800;
|
||||
max-height: 800;
|
||||
max-width: 800px;
|
||||
max-height: 800px;
|
||||
}
|
||||
|
||||
a {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue