1u
2{
3 text-decoration: underline;
4 text-decoration-color: red;
5}
6example of use: (in html)
7
8<p>The word <u>CAT</u>, is underlined </p>
1h1 {
2 text-decoration: overline;
3}
4
5h2 {
6 text-decoration: line-through;
7}
8
9h3 {
10 text-decoration: underline;
11}
12
13h4 {
14 text-decoration: underline overline;
15}
1a{
2 text-decoration:underline; // default in A tag
3 text-decoration:none;
4 text-decoration: overline;
5 text-decoration: line-through;
6 text-decoration: underline overline;
7}
8
9//My youtube:'https://www.youtube.com/HasibulIslambd'
1//Grouped
2h1 {
3 text-decoration: underline overline dotted red;
4
5}
6
7h2 {
8 text-decoration: underline overline wavy blue;
9}