Tailwind CSS: Navigationsdesign erstellen
P粉515066518
P粉515066518 2024-02-26 16:48:59
0
1
383

Ich bin neu in CSS und VueJs, also erstelle ich ein Tab-Panel-Design + Funktionalität

Derzeit verwende ich das Tailwind-CSS-Plugin

Das Design, das ich möchte, ist so:

Aktuell: CodePen

Ich kann diesen Wunsch nicht kopieren, weil ich Folgendes verpasst habe:

  • Abstand zwischen Elementen: Ich habe versucht, flex space-x-10grid grid-gap-20 zu verwenden, aber es funktioniert nicht
  • Hintergrund ist grau: Ich habe es ausprobiert <nav> 内使用 bg-gray-600 aber Ursache, nicht Ergebnis
  • Ausgewähltes Label per Klick ändern

P粉515066518
P粉515066518

Antworte allen(1)
P粉764785924

你可以做的是直接在CSS中更改你的导航,使用:

nav {
    width: max-content; /*This gonna set a fixed width, it is necessary*/
    display: flex;
    gap: 20px; /*increase as much you want to stay like your template, it is the space between the elements in your flex*/
    background: #ccc; /*Just put your color directly*/
    border-radius: 20px; /*Just put your radius*/;
}
Neueste Downloads
Mehr>
Web-Effekte
Quellcode der Website
Website-Materialien
Frontend-Vorlage