在带有边框的皮肤中绘制矩形

发布于 2024-10-07 02:31:49 字数 117 浏览 5 评论 0原文

可以绘制一个带有边框的矩形,该边框出现在左侧、右侧和顶部。 我想要的是一个标签栏,所有内容(内容和按钮)周围都有边框,但按钮和内容之间的边界应该消失。

我认为,最简单的方法是在没有底线的矩形周围绘制边框。

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.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

待天淡蓝洁白时 2024-10-14 02:31:49

尝试使用 CSS“outline”命令。

像这样的东西:

#tabContainer {
    border: 1px solid #DDD;
    outline: black solid thick;
}

Try using the CSS "outline" command.

Something like this :

#tabContainer {
    border: 1px solid #DDD;
    outline: black solid thick;
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文