Rect in a skin with border
It is possible to draw a rect with a border, which appears left, right and top. What I 开发者_运维知识库want is a tabbar with a border around everything (content and buttons), but the borderline between button and content should disappear.
I think, the easiest way would be to draw a border around a rect without the bottomline.
Try using the CSS "outline" command.
Something like this :
#tabContainer {
border: 1px solid #DDD;
outline: black solid thick;
}
精彩评论