在我的导航栏中,我目前正在将短语“退出”链接到 signout_path:
<li><%= link_to "Sign out", signout_path, :method => :delete %></li>
如何使 li 标签的整个区域成为一个链接,以便当我单击渐变区域中的任意位置时,它会链接到 home?
悬停在 li 区域的 CSS:
ul.TabNav li:hover {
background:#666;
cursor:pointer;
}
谢谢!:)