根据navbar html调整按钮的高度

时间:2018-03-29 18:15:42

标签: html css

我有一个导航栏和HTML定义的按钮,如下所示:

<div class="topnav">
  <a class="active" href="#home">Hooligans</a>
  <button class="button"><p style="font-family:courier;">drop dead</p></button>
</div>

上面的CSS是这样的:

.topnav {
  background-color: #F9FAFA;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
  overflow: hidden;
}

/* Style the links inside the navigation bar */

.topnav a {
  float: left;
  color: #BA55D3;
  text-align: center;
  padding: 8px 5px;
  text-decoration: none;
  font-size: 3vw;
}

.button {
  background-color: #F9FAFA;
  border: 2px solid #BA55D3;
  border-radius: 5%;
  color: #BA55D3;
  text-align: center;
  margin-left: 70%;
  display: inline-block;
}

现在,我能做的最好的事情就是按钮完全适合导航栏。我希望它小于导航栏,如stackoverflow导航栏中的Signup按钮。

当我设置按钮的高度时,按钮内的文字会跳出边框,当我尝试填充按钮时,按钮会变大。 有什么帮助吗?

1 个答案:

答案 0 :(得分:1)

删除按钮内的<p>标记,这就是造成意外边距的原因。另外,我添加了display: flex来居中对齐导航中的项目:

.topnav {
    background-color:#F9FAFA   ;
    box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2);
    overflow: hidden;
    display: flex;
    align-items: center;
  }

  /* Style the links inside the navigation bar */

  .topnav a {
    float: left;
    color: #BA55D3  ;
    text-align: center;
    padding: 8px 5px;
    text-decoration: none;
    font-size: 3vw;
  }


.button{
  background-color: #F9FAFA ;
  border:2px solid #BA55D3;
  border-radius: 5%;
  color:#BA55D3;
  text-align: center;
  margin-left: 70%;
  display: inline-block;
  font-family: courier;
  font-size: 1vw;
}
<div class="topnav">
      <a class="active" href="#home">Hooligans</a>
      <button class="button" >drop dead</button>
    </div>