热门标签 | HotTags
当前位置:  开发笔记 > 编程语言 > 正文

错误地渲染内部块的高度-Chromerenderinginline-blockheightwrongly

SowhatIneedistoplaceaplentyofinputsinsideadivandtheymustfulfillthediv.因此,我需要在一个d

So what I need is to place a plenty of inputs inside a div and they must fulfill the div.

因此,我需要在一个div中放置大量的输入,它们必须满足div。

In the firefox using the inline-block works fine, but in chrome it has a weird behavior as can be seen in plunker: Plunker

在火狐浏览器中,使用内嵌块是可行的,但是在chrome中,它有一个奇怪的行为,可以在plunker中看到:plunker

.cl {
    font-size: 11px;
    font-family: monospace;
    background: black;
    width: 50px;
    height: calc(14.24px);
    display: block;
    border: 0 !important;
    padding: 0 !important;
    margin: 0 !important;
    outline: 0 !important;
    outline-offset: 0;
    outline: 0;
}

Does anyone know a fix for that?

有人知道解决方法吗?

1 个解决方案

#1


1  

Simply add vertical-align: top; or any other vertical-align value to your inline-block elements.

只需添加vertical-align:最高;或任何其他垂直对齐的值到您的行-块元素。

Also, calc(14.24px) makes no sense, use simply height: 14px;
Also, avoid the use of !important (there's almost no reason to use it if your CSS is well structured)

同样,calc(14.24px)也没有意义,使用简单的高度:14px;此外,避免使用!important(如果CSS结构良好,几乎没有理由使用它)


推荐阅读
author-avatar
非机动车地了
这个家伙很懒,什么也没留下!
PHP1.CN | 中国最专业的PHP中文社区 | DevBox开发工具箱 | json解析格式化 |PHP资讯 | PHP教程 | 数据库技术 | 服务器技术 | 前端开发技术 | PHP框架 | 开发工具 | 在线工具
Copyright © 1998 - 2020 PHP1.CN. All Rights Reserved | 京公网安备 11010802041100号 | 京ICP备19059560号-4 | PHP1.CN 第一PHP社区 版权所有