html - Changing the text color of an element is not working -
i'm trying change text color of div class .highlight
in code below, isn't working.
what doing wrong?
.highlight { font-color: #ff3300; font-style: oblique; line-height: 20%; }
<div class="highlight"> <h4>associated press</h4> </div> <br> <h3 style="line-height:100%">4.6/5</h3> <div class="highlight"> <h4>goodreads</h4> </div>
change css
.highlight h4 { color: #ff3300; font-style: oblique; line-height: 20%; }
Comments
Post a Comment