From af55497ff6c404d125697ee4fb18967d628ee657 Mon Sep 17 00:00:00 2001 From: Neo_Chen Date: Tue, 21 Apr 2020 23:01:11 +0800 Subject: [PATCH] CSS: limit image size to 100% viewport --- docs/neostyle.css | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/docs/neostyle.css b/docs/neostyle.css index 1cf1973..19abf70 100644 --- a/docs/neostyle.css +++ b/docs/neostyle.css @@ -94,3 +94,7 @@ table, th, td { border-style: solid; border-width: 2px; } + +img { + max-width: 100vw; +}