如何在整个标签栏上均匀分隔标签

时间:2017-11-05 04:18:50

标签: reactjs tabs antd

我没有看到与此相关的任何内容是文档,有谁知道如何实现这一目标?我注意到ant设计使用rc-tabs,所以我查看了他们的文档,但也没有注意到任何事情,想想也许我看起来不够努力。任何帮助表示赞赏。

1 个答案:

答案 0 :(得分:1)

覆盖以下.ant-tabs { &-nav { display: flex; .ant-tabs-tab { flex-grow: 1; margin-right: 0px; width: 100%; text-align: center; } } } 个较少规则可以解决此问题:

NSOpenGLPixelFormatAttribute attribs[] = {
    NSOpenGLPFAPixelBuffer,
    NSOpenGLPFANoRecovery,
    NSOpenGLPFAAccelerated,
    NSOpenGLPFADepthSize, 24,
    (NSOpenGLPixelFormatAttribute) 0
};

NSOpenGLPixelFormat* format = [[[NSOpenGLPixelFormat alloc] initWithAttributes:attribs] autorelease];
NSOpenGLPixelBuffer* pixBuf = [[NSOpenGLPixelBuffer alloc]
                               initWithTextureTarget: GL_TEXTURE_2D
                               textureInternalFormat: GL_RGBA
                               textureMaxMipMapLevel: 0
                               pixelsWide: 32
                               pixelsHigh: 32];

NSLog(@"pbuf address: %p", pixBuf);

只要标签栏的宽度足以用于每个标签及其标题,这样可以均匀地分隔所有标签,同时消除每个标签之间的空白区域。

在:

enter image description here

后:

enter image description here