例如說我有<input type="text" class="class" id="id">
爲什麼不能有一些CSS選擇器樣式<input type =「text」>?
如果我使用style.css的這些選擇,他們不工作:
input {text-align:center;}
.class {text-align:center;}
但是當我使用這些選擇,他們的工作:
input[type='text'] {text-align:center;}
input.class {text-align:center;}
#id {text-align:center;}
這裏是小提琴:http://jsfiddle.net/geoyws/7KRD9/6/
任何人都可以解釋爲什麼嗎?我認爲選擇器是以DOM元素爲目標的。
瞭解特異性http://htmldog.com/guides/css/intermediate/specificity/你會得到答案。 – Era
The [all work](https://www.evernote.com/shard/s3/sh/177a5fe1-9cd2-4d95-ba60-e082acbf9d90/5496aeab99e36c966ea3ac21fa65a1b2) – Quentin
@ Mr.Alien - 它在技術上並沒有放大,它是我的截圖工具和視網膜顯示器之間的一些奇怪的反應。我應該到處去調查一下。 – Quentin