当前位置:  开发笔记 > 后端 > 正文

将悬停图像(CSS)添加到DataPager中的ASP.NET链接按钮

如何解决《将悬停图像(CSS)添加到DataPager中的ASP.NET链接按钮》经验,为你挑选了1个好方法。

我使用以下方法将悬停图像添加到.Net LinkBut​​tons:

.rollover a 
{
  background-image:url(/images/shoppingcart/butpill_continue.gif);
}

.rollover a:hover 
{
  background-image:url(/images/shoppingcart/butpill_continue_over.gif);
}

这适用于常规链接按钮.

我需要将它添加到DataPager中的下一个/上一个按钮.我尝试将ButtonType设置为"Link"并应用ButtonCssClass ="rollover",但这不起作用.有没有办法实现这个目标?



1> bendewey..:

尝试将你的CSS更改为

a.rollover { background-image:url(/images/shoppingcart/butpill_continue.gif); }

a.rollover:hover { background-image:url(/images/shoppingcart/butpill_continue_over.gif); }

要不就

.rollover { background-image:url(/images/shoppingcart/butpill_continue.gif); }

.rollover:hover { background-image:url(/images/shoppingcart/butpill_continue_over.gif); }

您还必须将其他图像更改为此类图像


推荐阅读
ar_wen2402851455
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有