summaryrefslogtreecommitdiff
path: root/testsuite/reftests/border-style.css
blob: d5471845a60443335975f8b078dd45868d767409 (plain)
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
@import url("reset-to-defaults.css");

button {
  background-color: red;
  border-color: lime;
  border-width: 1px;
}

.button-top-left {
  border-style: solid none none solid;
}

.button-top-right {
  border-style: solid solid none none;
}

.button-bottom-left {
  border-style: none none solid solid;
}

.button-bottom-right {
  border-style: none solid solid none;
}

.button-border {
  border-style: solid;
}