我没有看到与此相关的任何内容是文档,有谁知道如何实现这一目标?我注意到ant设计使用rc-tabs,所以我查看了他们的文档,但也没有注意到任何事情,想想也许我看起来不够努力。任何帮助表示赞赏。
答案 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);
只要标签栏的宽度足以用于每个标签及其标题,这样可以均匀地分隔所有标签,同时消除每个标签之间的空白区域。
在:
后: