@@ -15,7 +15,7 @@ const Range = () => {
15
15
Create custom < code > <input type="range"></ code > controls with{ ' ' }
16
16
< code > <CFormRange></ code > .
17
17
</ p >
18
- < DocsExample href = "forms/range" >
18
+ < DocsExample href = "forms/range" tabContentClassName = "bg-opacity-10" >
19
19
< CFormLabel htmlFor = "customRange1" > Example range</ CFormLabel >
20
20
< CFormRange id = "customRange1" />
21
21
</ DocsExample >
@@ -32,7 +32,7 @@ const Range = () => {
32
32
Add the < code > disabled</ code > boolean attribute on an input to give it a grayed out
33
33
appearance and remove pointer events.
34
34
</ p >
35
- < DocsExample href = "forms/range#disabled" >
35
+ < DocsExample href = "forms/range#disabled" tabContentClassName = "bg-opacity-10" >
36
36
< CFormLabel htmlFor = "disabledRange" > Disabled range</ CFormLabel >
37
37
< CFormRange id = "disabledRange" disabled />
38
38
</ DocsExample >
@@ -50,7 +50,7 @@ const Range = () => {
50
50
< code > 0</ code > and < code > 100</ code > , respectively. You may specify new values for
51
51
those using the < code > min</ code > and < code > max</ code > attributes.
52
52
</ p >
53
- < DocsExample href = "forms/range#min-and-max" >
53
+ < DocsExample href = "forms/range#min-and-max" tabContentClassName = "bg-opacity-10" >
54
54
< CFormLabel htmlFor = "customRange2" > Example range</ CFormLabel >
55
55
< CFormRange min = "0" max = "5" defaultValue = "3" id = "customRange2" />
56
56
</ DocsExample >
@@ -68,7 +68,7 @@ const Range = () => {
68
68
specify a < code > step</ code > value. In the example below, we double the number of steps
69
69
by using < code > step="0.5"</ code > .
70
70
</ p >
71
- < DocsExample href = "forms/range#steps" >
71
+ < DocsExample href = "forms/range#steps" tabContentClassName = "bg-opacity-10" >
72
72
< CFormLabel htmlFor = "customRange3" > Example range</ CFormLabel >
73
73
< CFormRange min = "0" max = "5" step = "0.5" defaultValue = "3" id = "customRange3" />
74
74
</ DocsExample >
0 commit comments