@@ -15,7 +15,7 @@ const Range = () => {
1515 Create custom < code > <input type="range"></ code > controls with{ ' ' }
1616 < code > <CFormRange></ code > .
1717 </ p >
18- < DocsExample href = "forms/range" >
18+ < DocsExample href = "forms/range" tabContentClassName = "bg-opacity-10" >
1919 < CFormLabel htmlFor = "customRange1" > Example range</ CFormLabel >
2020 < CFormRange id = "customRange1" />
2121 </ DocsExample >
@@ -32,7 +32,7 @@ const Range = () => {
3232 Add the < code > disabled</ code > boolean attribute on an input to give it a grayed out
3333 appearance and remove pointer events.
3434 </ p >
35- < DocsExample href = "forms/range#disabled" >
35+ < DocsExample href = "forms/range#disabled" tabContentClassName = "bg-opacity-10" >
3636 < CFormLabel htmlFor = "disabledRange" > Disabled range</ CFormLabel >
3737 < CFormRange id = "disabledRange" disabled />
3838 </ DocsExample >
@@ -50,7 +50,7 @@ const Range = () => {
5050 < code > 0</ code > and < code > 100</ code > , respectively. You may specify new values for
5151 those using the < code > min</ code > and < code > max</ code > attributes.
5252 </ p >
53- < DocsExample href = "forms/range#min-and-max" >
53+ < DocsExample href = "forms/range#min-and-max" tabContentClassName = "bg-opacity-10" >
5454 < CFormLabel htmlFor = "customRange2" > Example range</ CFormLabel >
5555 < CFormRange min = "0" max = "5" defaultValue = "3" id = "customRange2" />
5656 </ DocsExample >
@@ -68,7 +68,7 @@ const Range = () => {
6868 specify a < code > step</ code > value. In the example below, we double the number of steps
6969 by using < code > step="0.5"</ code > .
7070 </ p >
71- < DocsExample href = "forms/range#steps" >
71+ < DocsExample href = "forms/range#steps" tabContentClassName = "bg-opacity-10" >
7272 < CFormLabel htmlFor = "customRange3" > Example range</ CFormLabel >
7373 < CFormRange min = "0" max = "5" step = "0.5" defaultValue = "3" id = "customRange3" />
7474 </ DocsExample >
0 commit comments