答えてくれてありがとう...私はあなたのために今より良いコードを投稿しようとします. 残念なことに、jsfiddle やコード ペンを使用して例を示すことができません。これらのコード スニペット サイトが css のみを受け入れ、scss と susy を受け入れないのは非常に残念です!!!
Ok...
HTMLは -
<div class="nav">
<ul>
<li><a class="button active" href="#home">Home</a></li>
<li><a class="button" href="palms-for-sale.html">Shop</a></li>
<li><a class="button" href="ordering.html">Ordering</a></li>
<li><a class="button" href="delivery.html">Delivery</a></li>
<li><a class="button" href="plant-care.html">Care</a></li>
<li><a class="button" href="about.html">About</a></li>
</ul>
</div>
scss は -
.nav {
@include susy-breakpoint($xmedium-bp, $medium) {
@include span(8 of 8 at 0);
@include margin-leader(1);
height: 30px;
line-height: 30px;
vertical-align: middle;
ul {
li {
display: inline;
}
}
}
@include susy-breakpoint($large-bp, $large) {
@include span(8 of 8 at 0);
}
ul {
li {
a {
&.button {
@include susy-breakpoint($xmedium-bp, $medium) {
@include with-layout(6 inside, true){
@include span(1);
&::before {
content: " | ";
}
&:first-child {
&::before {
content: "";
}
}
}
}
@include susy-breakpoint($large-bp, $large) {
@include with-layout(6 inside, true){
@include span(1);
}
}
}
}
}
}
}
例を十分に取り除いていただければ幸いです。
ご覧いただきありがとうございます。
Vx