欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

很可爱的输入框

程序员文章站 2022-06-10 18:48:50
<!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=gb2312" />
<title>很可爱的输入框__www.jb51.net</title>
<style>
.username_bg { background:url(http://img.jb51.net/images/login_bg.gif) no-repeat 50%;}
.inputbox { width:100px; height:16px; border:1px solid #ff9900}
</style>
</head>
<body>
<input type="text" name="username" class="inputbox" onfocus="this.classname='username_bg inputbox'" onblur="this.classname='inputbox'" />
<input type="text" name="username1" class="inputbox" onfocus="this.classname='username_bg inputbox'" onblur="this.classname='inputbox'" />
</body>
</html>