How can I change this 2 lines of HTML so that i can put it into my CSS? -


how can target red text in css? need change color of red text orange:

<span style="color: #dc143c;"><strong>red text must orange</strong></span>

i tried following, don't know how should write make work..

span[style="color: #dc143c;"] {     color:#f7941d !important; } 

thanks help!

place red code in <span> tag in css target <span> , give them class tag change color red code given below

<span class="red-text">this red text</span> 

css code:

.red-text {color:#f7941d;} 

Comments

Popular posts from this blog

tcpdump - How to check if server received packet (acknowledged) -