Этот сайт имеет ограниченную функциональность, пока мы проводим техническое обслуживание для улучшения его работы. Если какая-либо статья не решила вашу проблему и вы хотите задать вопрос, наше сообщество поддержки ждёт вас: @FirefoxSupport в Твиттере и /r/firefox на Reddit.

Поиск в Поддержке

Избегайте мошенников, выдающих себя за службу поддержки. Мы никогда не попросим вас позвонить, отправить текстовое сообщение или поделиться личной информацией. Сообщайте о подозрительной активности, используя функцию «Пожаловаться».

Подробнее

CSS doesn't work in firefox when it works perfectly chrome or safari .

  • 2 ответа
  • 9 имеют эту проблему
  • 1 просмотр
  • Последний ответ от RAW_

more options

I can't make this CSS appear in firefox when it works perfectly in chrome or safari .site-branding a{content: url (XX);} have been trying to fix it with some informations that i got as

.site-branding a:before { 

content: url("");}

But nothing work out.

If anyone has an idea.

I can't make this CSS appear in firefox when it works perfectly in chrome or safari .site-branding a{content: url (XX);} have been trying to fix it with some informations that i got as .site-branding a:before { content: url("");} But nothing work out. If anyone has an idea.

Выбранное решение

Can you post a link to a publicly accessible page (i.e. no authentication or signing on required) where we can check this?

Note that content only works with ::before or ::after pseudo elements and may not work with all element types, but should work with an 'a' tag.

Do you want to display an image before the link?

See also:

Прочитайте этот ответ в контексте 👍 0

Все ответы (2)

more options

Выбранное решение

Can you post a link to a publicly accessible page (i.e. no authentication or signing on required) where we can check this?

Note that content only works with ::before or ::after pseudo elements and may not work with all element types, but should work with an 'a' tag.

Do you want to display an image before the link?

See also:

more options

Hello, Thank you for your answer. i actually find away to fix it, i'm using a wordpress so i fixed it like

/**chrome'**/ .page-id-HP .site-branding a{ content: url(""); } /**firefox**/ .page-id-HP .site-branding a:before { content: url(""); } .page-id-HP img[src*=""] {

   display: none;

} Thanks again.