前端開發中,CSS選擇器是非常重要的一環。以下是一些前端CSS選擇題,供大家學習參考。
1. 下列哪個不是CSS選擇器? A. #id B. .class C.D. None of the above 答案:D 2. 如何選擇所有的段落元素? A. p B. .p C. #p D. *p 答案:A 3. 如何選擇所有擁有“box”類名的元素? A. .box B. #box C. D. None of the above 答案:A 4. 如何選擇第一個h1元素? A. h1:first-child B. h1:first-of-type C. h1:first D. None of the above 答案:B 5. 如何選擇所有空鏈接的a元素? A. a[link=””] B. a[href=””] C. a[href=”#”] D. None of the above 答案:B 6. 如何選擇類型為submit的input元素? A. input[type=”submit”] B. input[type=”button”] C. input[type=”text”] D. None of the above 答案:A 7. 如何選擇前兩個li元素? A. li:first-child, li:nth-child(2) B. li:first-child, li:last-child C. li:first-child, li:nth-last-child(2) D. None of the above 答案:A 8. 如何選擇屬于parent元素的所有子元素? A. parent * B. parent >C. parent + D. None of the above 答案:B 9. 如何選擇不為disabled的input元素? A. input[!disabled] B. input[type=”submit”] C. input[type=”text”] D. None of the above 答案:A 10. 如何選擇包含文本“abc”的元素? A. *:contains(“abc”) B. *:text(“abc”) C. *:search(“abc”) D. None of the above 答案:A