要制作搜索标签,我已执行以下操作:
<form>
<input type="text" name="search" placeholder="Search..">
</form>
但是,如果我想从同一个html页面中搜索另一个元素,比如说一个名为&#34; 123&#34;使用此搜索标签,我该如何处理?
答案 0 :(得分:0)
非常简单请给这个答案评分5分
input[type=text]
{
background-color:green;
font-size:40px;
}
input[type=email]
{
background-color:red;
font-size:40px;
}
<form>
<input type=text placeholder="i an text and i am green"><br>
<input type=email placeholder="i an email and i am red"><br>
</form>