让我的菜单重复

发布于 2024-11-27 14:15:45 字数 163 浏览 1 评论 0原文

我不知道如何使我的菜单在容器外 100% 重复,并且仍然具有导航菜单中心。

我想问一下如何在菜单上制作双边框顶部和底部。

这是设计

我希望有人能帮助我。

I can't see how to make my menu repeat 100% out of the container, and still have the navigation menu center.

I want to ask to how to make a double border top and buttom on the menu.

Here is the design.

I hope someone can help me.

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

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

发布评论

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

评论(1

很酷不放纵 2024-12-04 14:15:45

你在评论里写道

更像是从屏幕(浏览器)的左到右重复:),
双边框如何使一个红色另一个绿色?现在造成
一个是黑色的:/

如果我理解正确的话,你可以在你的CSS样式表中做到这一点

nav {
position: relative;
background-image: url(../img/menu.jpg);
width: 100%;
height: 79px;
border-top: 3px double red;  //CHANGE COLOR
border-bottom: 3px double green;    //CHANGE COLOR
top: 15px;
z-index: 2;
}

You wrote in the comments

more like repeat from left to right of the screen (browser) :), the
double border how can i make the one red and another green? cause now
the one is black :/

If I understand correctly, you can do this in your css stylesheet

nav {
position: relative;
background-image: url(../img/menu.jpg);
width: 100%;
height: 79px;
border-top: 3px double red;  //CHANGE COLOR
border-bottom: 3px double green;    //CHANGE COLOR
top: 15px;
z-index: 2;
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文