Richard
Richard

Reputation: 1038

Can't get rid of the text indentation within inline blockquote

I have a blockquote displayed as inline element. My text get indentation in the first line and I can't remove it. As you can see I have been tried to use 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>

Upvotes: 1

Views: 447

Answers (0)

Related Questions