css 从nav元素中删除未填充的空间(间隙)

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了css 从nav元素中删除未填充的空间(间隙)相关的知识,希望对你有一定的参考价值。

/**
 * The Default Genesis styles have a bug which causes extra unwanted
 * space to display in the nav menu bar elements. This will remove the
 * extra space cross-browser. The reason for the strange .001px font size
 * is due to a bug on older Andorid devices.
 *  
 * Note: I've used the default Genesis styles here as an example. The only
 * actual change is the font-size rule on both selectors.
 *
 * Reference link:   http://css-tricks.com/fighting-the-space-between-inline-block-elements/
 * Android Bug link: http://codepen.io/SelenIT/pen/HIika
 */
 
.genesis-nav-menu {
  clear: both;
  font-size: .001px;
  line-height: 1;
  width: 100%;
}
 
.genesis-nav-menu .menu-item {
  display: inline-block;
  font-size: 16px;
  text-align: left;
}

以上是关于css 从nav元素中删除未填充的空间(间隙)的主要内容,如果未能解决你的问题,请参考以下文章

CSS可变宽度元素填充空间

从listView中删除项目仅删除最后一项未选择的元素android

CSS实现div的高度填满剩余空间

在 Kable 表中使用border_left 和border_right 时删除填充/空白/间隙

如何删除或减少标题和帖子标题之间的空白

iOS:删除左侧 uibarbuttonitem 之间的间隙