html制作一个搜索框,代码是什么?

html制作一个搜索框,代码是什么?,第1张

1、打开Hbuilder编辑器,创建一个input框和button按钮,将它们横排摆放在一起:

2、首先给input框添加“#7FCC0B”颜色的边框,设置宽度和高度即可,给button按钮设置白色的字体和“#7FCC0B”的背景颜色即可完成:

3、按crtl+s,在软件的右侧即可看到最终的效果。以上就是用html制作搜索框的演示:

首先把搜索宽切片下来再CSS样式里面用为背景

<body>

<form action="" method="get">

<div class="kuan"><input name="" type="text" /></div><!--搜索框-->

<div class="an"><input name="" type="button" /></div><!--搜索按钮-->

</form>

</body>

CSS样式根据实际自己调整

<style type="text/css">

.kuan input{ width:330pxheight:60pxbackground:background:url(../img/kuan_01.jpg) no-repeatborder:nonefloat:left}

.an input{ width:120pxheight:60px background:background:url(../img/an_02.jpg) no-repeatborder:none float:left}

</style>


欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/zaji/6132935.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2023-03-15
下一篇 2023-03-15

发表评论

登录后才能评论

评论列表(0条)

保存