删除div中的空白空间

时间:2018-09-15 16:55:08

标签: html css

我有一个带有3个按钮的div,并应用了一些CSS。 (JSFiddle)。

我要删除div边框和按钮之间的空白。我是HTML和CSS的新手,所以我想它很容易解决。

df['F[HZ]'] = df['F[HZ]'].astype(float).round(2)
df['T[C]'] = df['T[C]'].astype(int)

2 个答案:

答案 0 :(得分:2)

在许多情况下,您无法控制呈现的HTML中的白色间距,例如如果您的CMS生成HTML。

要解决在基于display: inline-block;的布局中出现的空白问题,标准方法是在父元素上设置font-size: 0;,然后为子元素重新设置字体大小根据您的要求。

.navBar {
  display: block;
  border: 5px solid black;
  width: 521.5px;
  position: sticky;
  margin-left: auto;
  margin-right: auto;
  top: 2px;
  font-size: 0;
}

.button {
  border: none;
  color: white;
  padding: 15px 32px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
  cursor: pointer;
  background-color: #555555;
  transition-duration: 0.4s;
  font-size: 16px;
}
<div class="navBar">
  <button type="button" class="button">text1</button>
  <button type="button" class="button">text2</button>
  <button type="button" class="button">text3</button>
</div>

答案 1 :(得分:0)

如果您希望使包装盒中的按钮合适。这样可能会对您有所帮助。

.navBar {
    display: block;
    border: 5px solid black;
    width: 521.5px;
    position: sticky;
    margin-left: auto;
    margin-right: auto;
    top: 2px;
    display: flex;
}

.button {
    border: none;
    color: white;
    padding: 15px 32px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    cursor: pointer;
    background-color: #555555;
    transition-duration: 0.4s;
    margin: 0 0.5%;
    width: 33%;
}

.button:hover {
    background-color: white;
    color: black;
}
<div class="navBar">
    <button type="button" class="button">text1</button>
    <button type="button" class="button" >text2</button>
    <button type="button" class="button">text3</button>
</div>