Tuesday, 6 July 2021

HTML and CSS line through

HTML 

https://www.w3schools.com/tags/tag_strike.asp


<p>My favorite color is <del>blue</del> <ins>red</ins>!</p>


CSS

https://developer.mozilla.org/en-US/docs/Web/CSS/text-decoration

.line {
  text-decoration: line-through;
}

No comments:

Post a Comment