我試圖在父代是錨點時刪除flex孩子的文本裝飾。我已經嘗試了以下所有代碼,而且它根本不起作用。我創建了一個jsFiddle,並且下劃線顯示所有的時間,而不是懸停。在我的WordPress安裝中,它僅在懸停時顯示。我真的不知道該怎麼做!任何幫助表示讚賞!如果父級是錨時,如何刪除flex孩子上的文本修飾下劃線?
謝謝你提前!!!!
.fleximagebox_link:hover, a.fleximagebox_link:hover, a .fleximagebox_link:hover,
.fleximagebox_link a:hover, .fleximagebox_link:hover a,
a .fleximagebox_link p:hover, .image_background:hover, .image_background:hover a,
a .image_background:hover, .image_background.fleximagebox_link a:hover,
a .image_background.fleximagebox_link:hover {
text-decoration: none!important;
}
這裏是的jsfiddle解釋什麼,我說什麼:https://jsfiddle.net/Clare12345/th60mde3/2/
更新:這是工作的代碼,但邁克爾·科克爾在一般正確的:」 .main_box .flexbox_images:懸停{文字裝飾:無!重要; }' – Clare12345
只是爲了總結其他人 - 'text-decoration:none'風格需要在父錨'a'元素上,而不是在孩子身上。 – icl7126