文章详情

  • 游戏榜单
  • 软件榜单
关闭导航
热搜榜
热门下载
热门标签
php爱好者> php文档>INPUT(button,text)设置背景总结

INPUT(button,text)设置背景总结

时间:2010-10-19  来源:codefans

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>设置表单背景</title>
<style type="text/css">
*
{
margin
: 0px;
padding
: 0px;
}
body
{
background-color
: #000;
}

.button
{
background
: url(style/images/login_btn.gif) no-repeat;
background-repeat
: no-repeat;
height
: 35px;
width
: 95px;
outline
:none;
hide-focus
: expression(this.hideFocus=true);
border
: 0px none #F00;
margin
: 50px;
}
</style>
</head>

<body>
<input type="submit" value="" class="button" />
</body>
</html>

 

总结:

  1. 设置背景图片:正确写法:background: url(style/images/login_btn.gif) no-repeat;设置背景属性不能分开写否则会使图片的透明效果失效。
  2. button背景:设置元素边框,将边框width属性设置0px,这样button的背景就可以正常显示出来了。
  3. button虚线框:设置这两条属性可以去除button的虚线框,outline:none;hide-focus: expression(this.hideFocus=true);
相关阅读 更多 +
排行榜 更多 +
辰域智控app

辰域智控app

系统工具 下载
网医联盟app

网医联盟app

运动健身 下载
汇丰汇选App

汇丰汇选App

金融理财 下载