要在HTML中制作搜索方格,你可以使用以下步骤:
(图片来源网络,侵删)
1、创建一个HTML文件,例如search_box.html
。
2、在文件中添加以下代码:
<!DOCTYPE html> <html lang="zh"> <head> <meta charset="UTF8"> <meta name="viewport" content="width=devicewidth, initialscale=1.0"> <title>搜索方格示例</title> <style> /* 设置搜索框的样式 */ .searchbox { display: flex; justifycontent: center; margintop: 50px; } /* 设置输入框的样式 */ .searchinput { width: 300px; height: 30px; padding: 5px; border: 1px solid #ccc; borderradius: 5px; } /* 设置按钮的样式 */ .searchbutton { height: 30px; marginleft: 10px; padding: 5px 10px; backgroundcolor: #4CAF50; color: white; border: none; borderradius: 5px; cursor: pointer; } /* 设置按钮的悬停效果 */ .searchbutton:hover { backgroundcolor: #45a049; } </style> </head> <body> <div class="searchbox"> <input type="text" class="searchinput" placeholder="请输入关键词"> <button class="searchbutton">搜索</button> </div> </body> </html>
3、保存文件并在浏览器中打开它,你将看到一个带有搜索框和搜索按钮的页面,用户可以在输入框中输入关键词,然后点击搜索按钮进行搜索。
声明:本站所有文章,如无特殊说明或标注,均为本站原创发布。任何个人或组织,在未征得本站同意时,禁止复制、盗用、采集、发布本站内容到任何网站、书籍等各类媒体平台。如若本站内容侵犯了原著者的合法权益,可联系我们进行处理。
评论(0)