"Text-decoration" property is used for underline, overline, and strikethrough text in CSS.
The text-decoration property specifies the decoration to be added to the text.
The below code is used to add underline to all the words within the p tag
p{
text-decoration: underline;
}
The below code is used to add line above the text to all the words within the p tag.
p{
text-decoration: overline;
}
The below code is user to strikethrough the text in p tag.
p{
text-decoration: line-through;
}