CSS Link - Link Altındaki Çizgiyi Kaldırmak

Konuya git Çalıştır
<!DOCTYPE html>
<html>
<head>
<style>
/* ziyaret edilmemiş link */
a{
border:1px dashed #000;
background-color:#4CAF50;
color:#fff;
padding:15px;
margin:10px;
}
a:link {
    color: red;
    text-decoration:none;
}

/* ziyaret edilmiş link */
a:visited {
    color: green;
text-decoration:none;
}

/* fare işaretçisi link üzerinde */
a:hover {
    color: hotpink;
    background-color:#2196F3
}

/* tam tıklama anı */
a:active {
    color: blue;
}
</style>
</head>
<body>

<p><b><a href="/css" target="_blank">Bu bir link</a></b></p>

</body>
</html>