HTML表单导致不必要的边距(CSS)

时间:2016-07-09 04:11:02

标签: html css

因此,如果没有表格,我的底栏会触及垂直线的末端。当我为搜索栏添加HTML时,它会导致水平线向下移动。我无法弄清楚如何移动搜索栏以使其与其他单词一致。我尝试使用填充,边距,正像素和负像素来移动搜索栏,但没有任何效果。下面是对表格所在的div有影响的三个块。

#search-bar {       
  top: 0px;
}

.topbar {
  float: left;
  height: 150%;
}

#top-bar {
  width:1200px;
  margin: 0 auto;
  height: 40px;
}

1 个答案:

答案 0 :(得分:0)

你试过了吗?

position: fixed;

此外,如果您希望搜索栏与let手边齐平,请使用

left: 0px;

对于底部,请使用bottom: 0px;

热门:top: 0px;

http://www.w3schools.com/cssref/pr_class_position.asp