diff --git a/src/scss/layout/_layout.scss b/src/scss/layout/_layout.scss index 14cd19533..b1b2faa17 100644 --- a/src/scss/layout/_layout.scss +++ b/src/scss/layout/_layout.scss @@ -113,6 +113,13 @@ article { audio { max-width: 100%; } + + // Blur imags which are missing alt tags altogether + // or whose alt tags begin with "This image has an empty alt attribute" + img:not([alt]), + img[alt^="This image has an empty alt attribute"] { + filter: blur(10px); + } } video {