I have a hyperlink that I need to stylize using CSS making it look like a button with clear CSS, my question is that as I call a hyperlink in CSS, I already tried with div, already tried to assign an id to the tag. >
<td><a href="delete_rows.php?del=<?php echo $books->ISBN; ?>">Delete</a></td>
the CSS code I've already done
width: 100px;
background: rgba(0, 0, 255, 0.3);
font-weight: bold;
color: white;
border: 0 none;
border-radius: 5px;
cursor: pointer;
padding: 5px 5px;
margin: 5px 5px;
I just do not know how to link between a hyperlink and CSS