Vaadin Grid row height

允我心安 提交于 2019-12-07 13:56:12

问题


I want to reduce cell size so to fit more rows in screen. [screen][1] so far i have used

.v-grid-cell {
    font-size: 13px;
    height: 18px;
    vertical-align: middle; 
}
.v-grid-row{
    height: 18px;

}
.v-grid-row-odd {
    height: 18px;
    background-color: #EFF0F1;
}

and the [result][2]


回答1:


Try setting a line-height on .v-grid-cell:

.v-grid-cell {  
    line-height: 18px;
}

This isn't really a Sass question though, it's just general plain 'ol CSS.




回答2:


try to reduce the font size of the grid. Try like below.

.v-grid-cell {
    font-size: 10px;
}


来源:https://stackoverflow.com/questions/34438195/vaadin-grid-row-height

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!