I have a large div:
.limeskin:hover {
background: #eee;
cursor: pointer;
display: block;
}
that I want to be clickable. Because I\'m
Using Link_to as below would be sufficient even when you have a big block including multiple tags:
<%= link_to desired_path do %>
... some other tags
<% end %>
and I recommend you to use a different background color for mouse over events because it shows the viewer that it's a link!
In you .css file:
.linkable:hover{
background-color: red;
}