From 46425aa588f72d9dd0a3d0898a309e5cd6471d08 Mon Sep 17 00:00:00 2001 From: Abhijeet Singh <144400642+abhijeet-singhh@users.noreply.github.com> Date: Tue, 29 Apr 2025 16:37:43 +0530 Subject: [PATCH] fix(curriculum): typo in lecture about styling special input elements (#60059) --- .../672bca660aa9f9ce9b2b2787.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/curriculum/challenges/english/25-front-end-development/lecture-best-practices-for-styling-forms/672bca660aa9f9ce9b2b2787.md b/curriculum/challenges/english/25-front-end-development/lecture-best-practices-for-styling-forms/672bca660aa9f9ce9b2b2787.md index 259df1bacfb..7b7793ce88c 100644 --- a/curriculum/challenges/english/25-front-end-development/lecture-best-practices-for-styling-forms/672bca660aa9f9ce9b2b2787.md +++ b/curriculum/challenges/english/25-front-end-development/lecture-best-practices-for-styling-forms/672bca660aa9f9ce9b2b2787.md @@ -14,7 +14,7 @@ Watch the video or read the transcript and answer the questions below. Let's learn about some of the common issues when trying to style special input elements like the `datetime-local` and `color` inputs. -These special type of inputs rely on complex pseudo-elements to create things like the date and color pickers. This presents a significant challenge for styling these inputs. One challenge is that the default styling is entirely browser-dependent, so the CSS you write to make the picker look the way intend may be entirely different on another browser. +These special types of inputs rely on complex pseudo-elements to create things like the date and color pickers. This presents a significant challenge for styling these inputs. One challenge is that the default styling is entirely browser-dependent, so the CSS you write to make the picker look the way intend may be entirely different on another browser. Another may be the complexity of the pseudo-element. Consider the date selector; there are a lot of moving parts here and the complex structure of the pseudo-element might pose a significant challenge in applying styling to the right areas.