Answers for "css underline without text"

1

css without underline

#Just set text decoration to none
.a {
    text-decoration: none;
}
Posted by: Guest on April-17-2021
0

how to underline any text in html without css

<!DOCTYPE html>
<html lang="en">
<head>
  <title>Hello Bro OR Sis</title>
</head>
<body>
<p><u>Hello World</u></p>
</body>
</html>
Posted by: Guest on August-16-2021

Browse Popular Code Answers by Language