From 950d8cd1c791fc8b6641c019b4ae1215003ea2fa Mon Sep 17 00:00:00 2001 From: Matthew Francis Brunetti Date: Thu, 8 Apr 2021 17:16:40 -0400 Subject: [PATCH] Don't remove margin & padding for `:last-child`s deep inside blockquote This selector should be more similar to that of the analogous css rule for `header` (`header > *:last-child { margin-bottom: 0; }`) --- new.css | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/new.css b/new.css index 61cc227..e4a0134 100644 --- a/new.css +++ b/new.css @@ -178,7 +178,7 @@ abbr { cursor: help; } -blockquote *:last-child { +blockquote > *:last-child { padding-bottom: 0; margin-bottom: 0; } @@ -444,4 +444,4 @@ input { img { max-width: 100%; -} \ No newline at end of file +}