问题描述
我的字体变不了?求助<asp:ButtonID="Button1"runat="server"BackColor="#252525"BorderColor="Black"style="top:0px;left:130px;position:absolute;height:45px;width:80px;background-color:#252525"Text="首页"ForeColor="white"onmouseout="this.style.backgroundColor='#252525';this.style.ForeCollor='white'"onmouseover="this.style.backgroundColor='#fff';this.style.FontColor='#000000'"/>
解决方案
解决方案二:
请先学习ccs样式。http://www.w3school.com.cn/cssref/selector_hover.asp
解决方案三:
css里定义hover
解决方案四:
首先你的样式里面并没有改变该按钮的字体,然后你试试这段代码<styletype="text/css">.p1{background-color:#252525;color:white;font-family:宋体;}.p2{background-color:#fff;color:red;font-family:黑体;}</style><asp:ButtonID="Button1"runat="server"class="p1"Text="首页"onmouseout="this.className='p1'"onmouseover="this.className='p2'"/></div>
解决方案五:
引用3楼liaoxing168的回复:
首先你的样式里面并没有改变该按钮的字体,然后你试试这段代码<styletype="text/css">.p1{background-color:#252525;color:white;font-family:宋体;}.p2{background-color:#fff;color:red;font-family:黑体;}</style><asp:ButtonID="Button1"runat="server"class="p1"Text="首页"onmouseout="this.className='p1'"onmouseover="this.className='p2'"/></div>
我试了下,好像不能实现。
解决方案六:
<styletype="text/css">.p1{background-color:#252525;color:white;font-family:宋体;}.p1:hover{background-color:#fff;color:red;font-family:黑体;}</style><asp:ButtonID="Button1"runat="server"class="p1"Text="首页"/>
解决方案七:
用js实现。页面加载时,添加对按钮对象的鼠标移动事件的处理处理为修改按钮的CSS样式