Answers for "check mark color css"

1

change color of mark in css

<style>
  h1 mark {
    background-color: cyan (add any color you want);
  }
</style>
<h1>
  <mark>
    And Voila! Cyan highlights!
  </mark>
</h1>
Posted by: Guest on December-04-2021
1

css mark color

<style>
mark { 
  background-color: yellow;
  color: black;
}
</style>

<mark>Highlighted text!!</mark>
Posted by: Guest on March-23-2020

Browse Popular Code Answers by Language