我正在我的这个网站上工作。我注意到greysofa.html页面的搜索栏比我网站上其他页面的搜索栏短。但是,我无法弄清楚为什么会发生这种情况,因为大多数代码在整个网站的其余部分都是相同的。有人能指出我需要修改哪些部分?谢谢!
https://helloyellowmellowcello.github.io/WareHouse/greysofa.html
答案 0 :(得分:2)
您已导入unsigned int count(node* head)
{
if(head == nullptr)
return 0;
return count(head, head->next);
}
unsigned count(node* head, node* current)
{
if(current == head) // our end condition!
return 1;
return 1 + count(head, current->next);
}
文件中的cart.css
,该文件包含此类:
greysofa.html
这会影响页面中呈现的所有输入,包括搜索栏,即:
input {
width: 3rem;
padding-left: 1rem;
margin-left: 1rem;
}
<input type="text" name="search" placeholder="Search for items">
会使搜索栏缩短1个小时。