diff options
author | Jesús <heckyel@hyperbola.info> | 2020-10-07 18:28:19 -0500 |
---|---|---|
committer | Jesús <heckyel@hyperbola.info> | 2020-10-07 18:28:19 -0500 |
commit | a0b2d77957bc515259cef81ecce9a8571157f913 (patch) | |
tree | 0bf42d519ab83bf0ec6f8ecd9cde9309dc07cd93 | |
parent | 01e1b6b67a383817c68f1a8ab76c73a2c396378f (diff) | |
download | web-base-a0b2d77957bc515259cef81ecce9a8571157f913.tar.lz web-base-a0b2d77957bc515259cef81ecce9a8571157f913.tar.xz web-base-a0b2d77957bc515259cef81ecce9a8571157f913.zip |
responive styles for img tag a video tag
-rw-r--r-- | grid.css | 10 |
1 files changed, 10 insertions, 0 deletions
@@ -40,6 +40,16 @@ body { /* grid-template-rows: auto 1fr auto; */ } +img { + width: 100%; + height: auto; +} + +video { + width: 100%; + height: auto; +} + .text-center { text-align: center; } |