I am looking for an XHTML 1.1 valid way to make a DIV into a clickable link.
More better:
You can't make the div a link itself, but you can make an <a> tag act as a block, the same behaviour a <div> has.
a {
display: block;
}
You can then set width and height on it.