我試圖選擇鏈接到沒有子圖像標記的外部網站的所有錨標記。如果我有一個圖像作爲鏈接,它會在這些圖像旁邊添加一個小的外部鏈接圖標,但我不想那樣。CSS selector:否<img> as child
這是我到目前爲止有:
a[href^="http://"]{
background:transparent url(..icon/external.png) center right no-repeat;
display:inline-block;
padding-right:18px;
}
作爲額外的獎勵,我將如何使它與合作「的https://」鏈接呢?
目前不能用CSS來完成。 [仍然沒有父母選擇器。](http://stackoverflow.com/questions/1014861/is-there-a-css-parent-selector) – thirtydot 2012-08-09 15:52:16
我不能等待CSS 4規範成爲標準...似乎有很多很酷的功能來自那裏。 – MaxGhost 2012-08-09 15:56:17
填充爲鏈接右側的圖標提供空間,然後背景將圖像自身添加到右側。內聯塊使整個鏈接包括圖片可點擊。 [看到這裏的更多信息](http://web-kreation.com/all/add-file-type-icons-next-to-your-links-with-css/) – MaxGhost 2012-08-09 16:00:24