xgqfrms / learning

learning : A collection of all kinds of resources, videos, pdf, blogs, codes... 📚 + 💻 + ❤
https://learning.xgqfrms.xyz
MIT License
16 stars 12 forks source link

CSS Quiz Results #139

Open xgqfrms opened 1 year ago

xgqfrms commented 1 year ago

CSS Quiz Results

https://www.w3schools.com/quiztest/quiztest.asp?qtest=CSS

https://www.w3schools.com/quiztest/result.asp

.error {
 position: static;
}

document.querySelector(`p h1`);
// null ❌

document.querySelector(`p,h1`);
// <h1>​CSS Quiz​</h1>​

document.querySelectorAll(`p h1`);
// NodeList [] ❌

document.querySelectorAll(`p,h1`);
// NodeList(7) [h1, p#qtext, p, p, p, p, p]. ✅

refs

https://www.cnblogs.com/xgqfrms/p/15586539.html