当前位置:编程学习 > JS >>

纯CSS使用DT、DD实现漂亮的表单效果

这段CSS代码不错,虽然现在CSS已经盛行了,但是用CSS布局表格类的东西还是有不少朋友摸不着头绪,这里向大家介绍一种常规的用CSS的DD/DT标签实现的表格效果,然后再加入你的表单元素,这样就完成一个比较不错的表单特效。
答案:<!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>CSS表单</title> 
<script language="javascript" type="text/javascript"> 
window.onload = function(){ 
    var initleft = 200;// 初始化定位 
    var lis = document.getElementById("menu").getElementsByTagName("li"); 
    for(var i = 0;i < lis.length;i++){ 
        lis[i].style.left = initleft + i*100 + "px"; 
    } 
     
} 
</script> 
<style type="text/css"> 
*{ 
    font-size:12px; 
    padding:0; 
    margin:0; 
} 
body{ 
    text-align:center; 
} 
#reg{ 
    margin:0 auto; 
    width:600px; 
    background:#eee; 
    height:360px; 
} 
h6{ 
    background:black; 
    height:28px; 
    color:white; 
    text-align:left; 
    line-height:28px; 
    padding-left:3px; 
} 
#menu{ 
    height:30px; 
    text-align:left; 
    padding-top:15px; 
    padding-left:10px; 
    overflow:hidden; 
} 
li{ 
    list-style-type:none; 
} 
#menu li{ 
     
    float:left; 
    color:green; 
    height:30px; 
    padding:0 5px; 
    line-height:30px; 
    margin-left:20px; 
    position:absolute; 
} 
.current{ 
    border:1px solid blue; 
    border-bottom:0; 
    background:white; 
} 
#content{ 
    border:1px solid blue; 
    height:256px; 
    margin:8px; 
    margin-top:0; 
    background:white; 
    padding:10px; 
     
} 
#content dl{ 
    border-top:1px solid #ccc; 
    border-left:1px solid #ccc; 
    width:560px; 
    height:116px; 
} 
#content dl dd,#content dl dt{ 
    border-right:1px solid #cccccc; 
    border-bottom:1px solid #cccccc; 
    height:28px; 
} 
#content dl dt{ 
    width:200px; 
    float:left; 
    text-align:right; 
    padding-right:3px; 
    background:#F0F0F0; 
    line-height:28px; 
} 
#content dl dd{ 
    width:352px; 
    float:left; 
    text-align:left; 
    padding-left:3px; 
} 
/*兼容ie 6.0*/ 
#content dl dd div{ 
    padding-top:3px; 
} 
</style> 
</head> 

<body> 
<div id="reg"> 
<h6>欢迎注册会员!</h6> 
<div id="menubox"> 
<ul id="menu"> 
<li style="left:200px;">您的注册信息:</li> 
<li class="current" style="left:300px;">选择用户名:</li> 
<li style="left:400px;">用户类型:</li> 
<li style="left:500px;">详细资料:</li> 
</ul> 
</div> 
<div id="content"> 
<form> 
<dl> 
    <dt>用户名:</dt> 
<dd><div><input type="text" /></div></dd> 
<dt>您的密码:</dt> 
<dd><div><input type="text" /></div></dd> 
<dt>确认密码:</dt> 
<dd><div><input type="text" /></div></dd> 
<dt></dt> 
<dd><input type="button" value="注册" /></dd> 
</dl> 
    </form> 
</div> 
</div> 
</body> 
</html>

上一个:鼠标放上按钮后,按钮更换颜色
下一个:点击单选框将值添加至文本输入框

CopyRight © 2022 站长资源库 编程知识问答 zzzyk.com All Rights Reserved
部分文章来自网络,