在为特定元素定义CSS时,如果我们在讨论网页的速度/准确性/处理时指定精确路径会有什么不同吗?
例如如果我只在表格的第3列中输入文本,这对于速度,准确度,处理和其他参数更好?
选项1:
table input[type="text"] { background:yellow; }
方案2:
table td:nth-child(3) input[type="text"] { background:yellow; }