开发者

Rect in a skin with border

开发者 https://www.devze.com 2023-01-30 08:51 出处:网络
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 betwe

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;
}
0

精彩评论

暂无评论...
验证码 换一张
取 消