I'm not sure if this is exactly what you're after:
Code:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<title>Hover needed</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<style type="text/css">
* {
padding: 0;
margin: 0;
}
body {
color: #333;
font-family: verdana, arial, helvetica, sans-serif;
font-size: 77%;
padding: 10px;
}
a img {
border: 0;
}
.job {
font-size: 100%;
color: #333;
}
.links a, .links a:link {
display: block;
padding: 5px;
text-decoration: none;
}
.links a:hover {
background-color: #C33;
}
#jobsbox{
background: #FFFFFF url(heading.png) no-repeat;
width: 184px;
height: 307px;
margin-left: 3px;
border-right: 1px solid #C33;
border-bottom: 1px solid #C33;
border-left: 1px solid #C33;
}
.links {
border-top: 1px dashed #c0c0c0;
border-bottom: 1px dashed #c0c0c0;
}
.links span {
display: block;
color: #666;
font-weight: bold;
}
.links .job {
color: #333;
}
.links .details {
color: #0063AC;
}
</style>
</head>
<body>
<div id="jobsbox">
<div class="links">
<a href="#">
<span class="job">Website Developer</span>
<span>£50,000</span>
<span class="details"><img src="down_arrow.png" alt="" /> Further Details</span>
</a>
</div>
</div>
</body>
</html>
Bookmarks