0

I have a code and there is class and css style in code. I can't see and can't change this css code. So My css dosen't work for this span. But I need to change this css style as I want. I need blue color for span. How I can do that? Help me asap. Thanks.

.grid {
  display: block;
}

.grid .item {
  color: blue;
}
<div class="grid">
  <p>I need change</p>
  <span class="item" style="color:red;">This is change place!!!</span>
</div>
Umutambyi Gad
  • 4,082
  • 3
  • 18
  • 39
  • use !important ... – Temani Afif Jul 10 '20 at 22:45
  • Please read [Under what circumstances may I add “urgent” or other similar phrases to my question, in order to obtain faster answers?](//meta.stackoverflow.com/q/326569) - the summary is that this is not an ideal way to address volunteers, and is probably counterproductive to obtaining answers. Please refrain from adding this to your questions. – halfer Jul 11 '20 at 10:33

1 Answers1

0

Use !important tag

.grid .item { color: blue !important; }
iguypouf
  • 770
  • 4
  • 15