Pēc noklusējuma hipersaites vienmēr tiek pasvītrotas, lai hipersaiti būtu ērti atšķirt no parasta teksta. Tomēr dažos gadījumos lietderīgi šo pasvītrojumu novākt, īpaši ja atšķirība starp saiti un tekstu redzama nepārprotami.
Lai saites netiktu pasvītrotas, selektoram A (stila blokā/failā) jāpievieno parametrs text-decoration: none.
Piemērs
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=windows-1251">
<title>Ссылки без подчеркивания</title>
<style type="text/css">
A {
text-decoration: none; /* Atceļam saites pasvītrojumu */
}
</style>
</head>
<body>
<p><a href="link.html">Saite bez pasvītrojuma</a></p>
</body>
</html>
Piemēra rezultāts