标签:style blog http io color os ar for sp
<!doctype html> <html lang="en"> <head> <meta charset="UTF-8"> <title> form表单 </title> <style> *{ padding:0px; margin:0px; font:14px/1.5 ‘微软雅黑‘; border:none; } body{ text-align: center; padding-top: 50px; } form p{ margin-bottom: 20px; } form p label{ margin-right: 10px; } form p input{ padding: 7px 7px 7px 45px; border: 1px solid #ccc; width: 350px; outline: 0; -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075),0 0 8px rgba(102,175,233,.6); box-shadow: inset 0 1px 1px rgba(0,0,0,.075),0 0 8px rgba(102,175,233,.6); background:url(‘./img/rl-sprite.png‘) no-repeat 0px 0px; } form p input:focus{ border:1px solid #66afe9; } #name{ background-position: -84px -727px; } #email{ background-position: -84px -679px; } #pwd{ background-position: -84px -775px; } </style> </head> <body> <form> <p> <label for=‘name‘>姓名</label> <input type="text" id="name" placeholder="请输入姓名" /> </p> <p> <label for=‘email‘>邮箱</label> <input type="text" id="email" placeholder="请输入邮箱" /> </p> <p> <label for=‘pwd‘>密码</label> <input type="text" id="pwd" placeholder="请输入密码" /> </p> </form> </body> </html>
标签:style blog http io color os ar for sp
原文地址:http://www.cnblogs.com/ayguo/p/4060217.html