0

我在 EXT JS 中遇到问题,当添加 infobubble 选项卡时,选项卡变为垂直对齐,我想变成原来的水平对齐,我认为是 EXT JS CSS 问题,有什么想法修改它吗?

This is the example

http://jsfiddle.net/anthor/vgxaV/3/

这是原始信息泡泡

http://google-maps-utility-library-v3.googlecode.com/svn/trunk/infobubble/examples/example.html

在此处输入图像描述

4

1 回答 1

2

这个小提琴在 chrome 中工作:http: //jsfiddle.net/ach7N/6/

问题在于以下 extjs css 规则:

.x-border-box, .x-border-box * {
    box-sizing: border-box;
}

我在您的中心面板和以下 css 中添加了 reset-box-sizing 类:

.x-border-box .reset-box-sizing * {
    box-sizing: content-box;
}
于 2013-05-02T00:29:33.507 回答