Say I have a div with the following attributes:
.box {
width: 300px;
height: 67px;
margin-bottom: 15px;
}
How would I make it so that if
Linking a div has worked for me simply by wrapping it in an a tag. Here is an example below with Bootstrap classes:
SEND
Send candidate survey
To change your div colour on hover add:
div:hover {
background-color: rgba(255,255,255,0.5);
}
to your CSS :)