展开全部
非IE6浏览器,可以使用input:hover的伪类来控制样式,但IE6浏览器只能用JS来实现了,需要设定两个状态,然后用JS切换类。
<style>
#c_button { width:92px; height:30px; border:0; float:left;}
.c_up{background:url(../images/i_login_btn.png) no-repeat 0 top;}
.c_down{background:url(../images/i_login_btn.png) no-repeat 0 bottom;}
</style>
<input name="" id="c_button" class="c_up" type="submit" value="" title="点击登录"/>
<script type="text/javascript">
document.getElementById("c_button").onmouseover=function() {this.className = "c_down";}
document.getElementById("c_button").onmouseout=function(){this.className = "c_up";}
</script>
<style>
#c_button { width:92px; height:30px; border:0; float:left;}
.c_up{background:url(../images/i_login_btn.png) no-repeat 0 top;}
.c_down{background:url(../images/i_login_btn.png) no-repeat 0 bottom;}
</style>
<input name="" id="c_button" class="c_up" type="submit" value="" title="点击登录"/>
<script type="text/javascript">
document.getElementById("c_button").onmouseover=function() {this.className = "c_down";}
document.getElementById("c_button").onmouseout=function(){this.className = "c_up";}
</script>
2013-03-26
展开全部
直接修改就行了啊
<input type="submit" style="height:px;width:px;">
或者起个名字在css中写样式
<input type="submit" class="submit">
<input type="submit" style="height:px;width:px;">
或者起个名字在css中写样式
<input type="submit" class="submit">
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
在CSS里面改
例如<input type="submit" value="提交" name="submit">
然后在css里面修改
input{
background:red;
width:长度;
height:高度;
}
例如<input type="submit" value="提交" name="submit">
然后在css里面修改
input{
background:red;
width:长度;
height:高度;
}
本回答被网友采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询