资 源 简 介
A cross-browser solution for making divs linkable, that validates.
Below is the basic code of the most recent version. Hit up the download page to download examples, and the instructions on how to install.
```
/* Make a into a link!
------------|----------------------------|
| The HTML: | |
|-----------| |
| |
| |
| |
-----------------------------------------|
|This code is by Andrew Tyler |
|From: http://code.google.com/p/divlink/ |
-----------------------------------------|
*/
.divlink a {
display:block;
width:100%;
height:100%;
text-decoration:none;
}
.divlink a:hover {
text-decoration:none;
}
```