Не удается избавиться от отступа в тексте внутри строчной цитаты - PullRequest
0 голосов
/ 08 марта 2019

У меня есть блочная цитата, отображаемая как встроенный элемент.Мой текст получает отступ в первой строке, и я не могу удалить его.Как видите, меня пытались использовать margin:0 padding:0 text-indent:0

blockquote {
    display:inline;
    background-color:#000;
  color:#fff;
}

blockquote::first-line {
  margin:0 !important;
  padding:0 !important;
  text-indent:0 !important;
}
<blockquote>Some text Some text Some text Some text<br>some othersome other some other some other some other</blockquote>
...