在网上做有奖信息的时候,经常看见一些注册表单,只有一条线供你填写,就跟做考卷时的填空题一样,很cool!
其实要做成这样的效果并不难,只需用一段很简短的css代码即可搞定!
< style type=”text/css”>
< !–
.xian{border-left-style: none; border-right-style: none; border-top-style: none}
– >
< /style>
其中代码的作用如下:
“border-left-style:none”: 不显示左边框
“border-right-style: none”: 不显示右边框
“border-top-style: none”: 不显示上边框
“border-bottom-style: none”: 不显示上边框,加上这条,什么边框也没有了
让我们一起来看一个应用实例吧:
< html>
< head>
< title>网上填空< /title>
< style type=”text/css”>
< !–
.xian{border-left-style: none; border-right-style: none; border-top-style: none ;}
– >
< /style>< !–注:此段为css代码,在这里更改参数可以设置出更cool的效果–>
< /head>
< body bgcolor=”#ffffff” text=”#000000″>
隐藏你的边框
< p>用户名:
< input type=”text” name=”name” class=xian> < !–注:class=这条一定要加,设置你的css应用在表单里面– >
< /p>
< /body>
< /html>
实现的效果简洁清爽,怎么样,也改改你的表单吧!