mirror of
https://github.com/freeCodeCamp/freeCodeCamp.git
synced 2026-05-31 19:00:32 -04:00
fix: added the missing quote for checkbox for issue (#64584)
Co-authored-by: majestic-owl448 <26656284+majestic-owl448@users.noreply.github.com>
This commit is contained in:
@@ -23,7 +23,7 @@ You should have a selector in your CSS of `input[type="checkbox"]`.
|
||||
assert.exists(new __helpers.CSSHelp(document).getStyle('input[type="checkbox"]'));
|
||||
```
|
||||
|
||||
You should add a `width` property to your `input[type="checkbox]` selector.
|
||||
You should add a `width` property to your `input[type="checkbox"]` selector.
|
||||
|
||||
```js
|
||||
assert.isNotEmpty(new __helpers.CSSHelp(document).getStyle('input[type="checkbox"]')?.width);
|
||||
@@ -35,7 +35,7 @@ You should have a `width` property with a value of `20px`.
|
||||
assert.strictEqual(new __helpers.CSSHelp(document).getStyle('input[type="checkbox"]')?.width, "20px");
|
||||
```
|
||||
|
||||
You should add a `height` property to your `input[type="checkbox]` selector.
|
||||
You should add a `height` property to your `input[type="checkbox"]` selector.
|
||||
|
||||
```js
|
||||
assert.isNotEmpty(new __helpers.CSSHelp(document).getStyle('input[type="checkbox"]')?.height);
|
||||
@@ -47,7 +47,7 @@ You should have a `height` property with a value of `20px`.
|
||||
assert.strictEqual(new __helpers.CSSHelp(document).getStyle('input[type="checkbox"]')?.height, "20px");
|
||||
```
|
||||
|
||||
You should add a `cursor` property to your `input[type="checkbox]` selector.
|
||||
You should add a `cursor` property to your `input[type="checkbox"]` selector.
|
||||
|
||||
```js
|
||||
assert.isNotEmpty(new __helpers.CSSHelp(document).getStyle('input[type="checkbox"]')?.cursor);
|
||||
|
||||
@@ -27,7 +27,7 @@ You should have an `appearance` property with a value of `none`.
|
||||
assert.strictEqual(new __helpers.CSSHelp(document).getStyle('input[type="checkbox"]')?.appearance, "none");
|
||||
```
|
||||
|
||||
You should add a `border` property to your `input[type="checkbox]` selector.
|
||||
You should add a `border` property to your `input[type="checkbox"]` selector.
|
||||
|
||||
```js
|
||||
assert.isNotEmpty(new __helpers.CSSHelp(document).getStyle('input[type="checkbox"]')?.border);
|
||||
|
||||
Reference in New Issue
Block a user