你好我試圖通過使用代碼來想,我怎麼能風格,我已經加載CSS的圖像,我這樣做:如何風格背景圖片CSS
.news1 {
content: url("https://i.vimeocdn.com/portrait/58832_300x300");
}
我又試圖樣式該通過這樣做:
.news1 img:hover {
-moz-transform: scale(1.1);
-webkit-transform: scale(1.1);
transform: scale(1.1);
}
我然後也嘗試:
.news1 content:hover {
-moz-transform: scale(1.1);
-webkit-transform: scale(1.1);
transform: scale(1.1);
}
看來,如果您的圖像沒有經過HTML - 標籤,而是通過純CSS – Manticore
有沒有辦法'content'將在這裏工作定義。 –