小编给大家分享一下HTML怎么定义搜索栏,希望大家阅读完这篇文章之后都有所收获,下面让我们一起去探讨吧!
HTML定义搜索栏的方法:首先新建一个div,id名为box;然后在内部添加一个input标签和一个div标签;最后使用css为它们设计样式即可。
HTML定义搜索栏的方法:
首先新建一个div,id名为box,用来包裹搜索框;
然后在内部添加一个input标签和一个div标签,一个用来输入文字,一个充当按钮;
最后使用css为它们设计样式即可。
<!DOCTYPE html><html><head><meta charset="utf-8"><meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1"><title>Examples</title><meta name="description" content=""><meta name="keywords" content=""><link href="" rel="stylesheet"><style type="text/css"> #box{ width: 380px; margin: 30px auto; font-family: 'Microsoft YaHei'; font-size: 14px; } input{ width: 260px; border: 1px solid #e2e2e2; height: 30px; float: left; background-image: url(images/search.jpg); background-repeat: no-repeat; background-size: 25px; background-position:5px center; padding:0 0 0 40px; } #search{ width: 78px; height: 32px; float: right; background: black; color: white; text-align: center; line-height: 32px; cursor: pointer; } </style></head><body> <div id="box"> <input type="search" name="search" placeholder="请输入关键字"> <div id="search">搜索</div> </div></body></html>
看完了这篇文章,相信你对“HTML怎么定义搜索栏”有了一定的了解,如果想了解更多相关知识,欢迎关注编程网行业资讯频道,感谢各位的阅读!