mirror of
https://github.com/danog/sass-site.git
synced 2024-11-27 12:35:03 +01:00
32 lines
402 B
Plaintext
32 lines
402 B
Plaintext
|
{% codeExample 'nesting' %}
|
||
|
nav {
|
||
|
ul {
|
||
|
margin: 0;
|
||
|
padding: 0;
|
||
|
list-style: none;
|
||
|
}
|
||
|
|
||
|
li { display: inline-block; }
|
||
|
|
||
|
a {
|
||
|
display: block;
|
||
|
padding: 6px 12px;
|
||
|
text-decoration: none;
|
||
|
}
|
||
|
}
|
||
|
===
|
||
|
nav
|
||
|
ul
|
||
|
margin: 0
|
||
|
padding: 0
|
||
|
list-style: none
|
||
|
|
||
|
li
|
||
|
display: inline-block
|
||
|
|
||
|
a
|
||
|
display: block
|
||
|
padding: 6px 12px
|
||
|
text-decoration: none
|
||
|
{% endcodeExample %}
|