1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44
|
body {
margin: 0;
padding: 5px;
}
body ul {
/* test */
margin: 0;
}
body ul li:first-child {
border-top: none;
}
body ul li:last-child {
border-bottom: none;
}
ul li:first-child,
ul li:last-child {
display: none;
}
foo {
border-radius: 5px;
}
foo bar baz {
border-radius: 5px;
}
foo,
bar,
baz {
border-radius: 5px;
}
input[type=button] {
border-radius: 5px;
}
button,
input[type=button],
input[type=submit],
a.button {
border-radius: 5px;
}
.foo {
width: 10px;
}
.foo .bar {
width: 10px;
}
|