保证金空间需要为0px

时间:2017-10-25 04:20:38

标签: html css twitter-bootstrap-3

我正在学习网页设计。试图复制网络进行练习。一切似乎都没问题。但是导航栏和第一个div之间的空间需要20px的边距空间。我希望边距空间为0px。 css文件保持边距为0px但是当我检查页面时总是保持20px。我该如何解决这个问题?在此先感谢。

2 个答案:

答案 0 :(得分:0)

您可以使用

覆盖具有20px边距的css类
.className {
    margin: 0px !importart;
}

答案 1 :(得分:0)

正如你所说,我试过上面的解决方案。它没有用。 我发送图像和代码..希望它有所帮助。

  .navbar {
      padding-top: 15px;
      padding-bottom: 15px;
      border: 0;
      border-radius: 0;
      margin-bottom: 0;
      font-size: 12px;
      letter-spacing: 5px;
  }
  .navbar-nav  li a:hover {
      color: #1abc9c !important;
  }

the image is for the inspect of the nar bar...where the margin is not accepting 0px.