无法摆脱内联blockquote中的文本缩进

时间:2019-03-08 14:38:51

标签: html css blockquote

我有一个显示为内联元素的blockquote。 我的文字在第一行缩进,无法删除。 如您所见,我已尝试使用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>

0 个答案:

没有答案