Hello, these are my 3 codepens for each task in Test your skills page.
Mdn page
Any help would be appreciated.
Hello, these are my 3 codepens for each task in Test your skills page.
Mdn page
Any help would be appreciated.
Hi @CalinObo and welcome to the community
Amazing styles on these tasks. One can see that you spent a lot of time to tweak the details.
I just have two tiny things:
appearance
in input[type="search"]
. The non-prefixed version is only support since one year on Safari.✕
) to match the weight of the check mark.Keep up the great work and have a nice day,
Michael
Thank you so much for your reply @mikoMK .
Would you kindly be able to share an article or more info regarding the appearance in input? I know that there are 2 engines such as webkit and blink, blink is implied with safari. Is it a css rule with blink?
Thank you for the non-bold version, on mdn it was just a character with the bolded x, I wanted to use the one without bold but couldn`t find it.
Once again, thank you a lot for your time.
Nowadays, there are three relevant browser engines:
Chrome formerly used WebKit and forked it in 2013 as Blink. Chrome continued using the -webkit-
prefix when they introduced new non-standard properties. In general, vendor prefixes are a thing of the past, but they are still around to not break old code. There’s a glossary entry on MDN about vendor prefixes. It also explains how the problem is solved today.
Regarding appearance
I only ever used it like in these exercises to remove any browser specific styling and apply my own.
-webkit-appearance: none;
appearance: none;
To find a specific Unicode character I sometimes look through this list https://en.wikibooks.org/wiki/Unicode/List_of_useful_symbols or search on https://www.fileformat.info/info/unicode/char/search.htm.
I hope that helps.