码迷,mamicode.com
首页 > 其他好文 > 详细

标准页面输入框样式(整体)

时间:2014-12-10 22:39:15      阅读:378      评论:0      收藏:0      [点我收藏+]

标签:style   io   ar   color   sp   for   java   on   cti   

<%@ page language="java" import="java.util.*" pageEncoding="UTF-8"%>
<%
String path = request.getContextPath();
String basePath = request.getScheme()+"://"+request.getServerName()+":"+request.getServerPort()+path+"/";
%>

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<base href="<%=basePath%>">

<title>输入框样式</title>

<style type="text/css">
*{
margin:0;
padding:0;
}
body{
font-size:63%;
color:#000;
}

.input_on{
padding:2px 8px 0pt 3px;
height:18px;
border:1px solid #999;
background-color:#FFFFCC;
}
.input_off{
padding:2px 8px 0pt 3px;
height:18px;
border:1px solid #CCC;
background-color:#FFF;
}
.input_move{
padding:2px 8px 0pt 3px;
height:18px;
border:1px solid #999;
background-color:#FFFFCC;
}
.input_out{

padding:2px 8px 0pt 3px;
height:18px;
border:1px solid #CCC;
background-color:#FFF;
}

ul.input_test{
margin:20px auto 0 auto;
width:500px;
list-style-type:none;
}
ul.input_test li{
width:500px;
height:22px;
margin-bottom:10px;
}
.input_test label{
float:left;
padding-right:10px;
width:100px;
line-height:22px;
text-align:right;
font-size:1.4em;
}
.input_test p{
float:left;
_margin-top:-1px;
}
.input_test span{
float:left;
padding-left:10px;
line-height:22px;
text-align:left;
font-size:1.2em;
color:#999;
}
</style>

</head>

<body>
<ul class="input_test">
<li>
<label for="inp_name">姓名:</label>
<p><input id="inp_name" class="input_out" name="" type="text" onfocus="this.className=‘input_on‘;this.onmouseout=‘‘" onblur="this.className=‘input_off‘;this.onmouseout=function(){this.className=‘input_out‘};" onmousemove="this.className=‘input_move‘" onmouseout="this.className=‘input_out‘" /></p>
<span>请输入您的姓名</span>
</li>
<li>
<label for="inp_email">Email:</label>
<p><input id="inp_email" class="input_out" name="" type="text" onfocus="this.className=‘input_on‘;this.onmouseout=‘‘" onblur="this.className=‘input_off‘;this.onmouseout=function(){this.className=‘input_out‘};" onmousemove="this.className=‘input_move‘" onmouseout="this.className=‘input_out‘" /></p>
<span>请输入您的Email</span>
</li>
<li>
<label for="inp_web">网站:</label>
<p><input id="inp_web" class="input_out" name="" type="text" onfocus="this.className=‘input_on‘;this.onmouseout=‘‘" onblur="this.className=‘input_off‘;this.onmouseout=function(){this.className=‘input_out‘};" onmousemove="this.className=‘input_move‘" onmouseout="this.className=‘input_out‘" /></p>
<span>请输入您的网站</span>
</li>
</ul>
</body>
</html>

标准页面输入框样式(整体)

标签:style   io   ar   color   sp   for   java   on   cti   

原文地址:http://www.cnblogs.com/zcl1224/p/4156386.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!