Firefox - Font is changing on :hover [closed] - html

Closed. This question is not reproducible or was caused by typos. It is not currently accepting answers.
This question was caused by a typo or a problem that can no longer be reproduced. While similar questions may be on-topic here, this one was resolved in a way less likely to help future readers.
Closed 9 years ago.
Improve this question
Hello there first time here and good a little problem which bothers me.
I am working on a design which looks quite ok at Chrome. But when i change to Firefox the Font is changing on :hover. For the whole page. Like the font-weight is getting a new value.
I hope somebody can help me fixing this:
http://ggson-test.co.gp/beta/
Thank you very much!

This is what is causing it :-
.nav a:hover:after {
content: "\25B2";
}

Related

Make a radial gradient in edge [closed]

Closed. This question is not reproducible or was caused by typos. It is not currently accepting answers.
This question was caused by a typo or a problem that can no longer be reproduced. While similar questions may be on-topic here, this one was resolved in a way less likely to help future readers.
Closed 13 days ago.
Improve this question
I am trying to make a radical gradient in edge but it doesn't work :
background-image: radical-gradient(#3A3456, #211E2E);
Do you know why and can you give a solution to my problem pls?
Thanks
I also tried to use a conic gradient to make a radical gradient but it was more difficult to do it and I didn't get the result I wanted.
I am expecting something like this :
enter image description here
I believe you want:
background-image: radial-gradient(#3A3456, #211E2E));
The issue was a typing problem. It is not a radical-gradient, but instead a radial-gradient

how can I set the css box-shadow property to overlap images? [closed]

Closed. This question is not reproducible or was caused by typos. It is not currently accepting answers.
This question was caused by a typo or a problem that can no longer be reproduced. While similar questions may be on-topic here, this one was resolved in a way less likely to help future readers.
Closed 2 years ago.
Improve this question
I am trying to get the box-shadow effect of the navbar to overlap the image.
This is the example website: https://codesandbox.io/s/thirsty-cannon-8c3kh?file=/public/index.html
It works fine over text but not images.
Any help will be much appreciated.
As you can see on the image box-shadow is working. And yes the problem is in opacity most probably.
[box-shadow]
https://i.stack.imgur.com/hOkSP.png

CSS working in codepen not in jsfiddle [closed]

Closed. This question is not reproducible or was caused by typos. It is not currently accepting answers.
This question was caused by a typo or a problem that can no longer be reproduced. While similar questions may be on-topic here, this one was resolved in a way less likely to help future readers.
Closed 6 years ago.
Improve this question
I've got this pen, which I'm migrating to this fiddle
There is no external CSS library and d3.js is referenced in both of them.
Where am I missing?
You're missing the SCSS setting in your fiddle. Click the gear next to CSS, and choose SCSS from the drop down.

How do I get rid of this little green box on my HTML/CSS page [closed]

Closed. This question is not reproducible or was caused by typos. It is not currently accepting answers.
This question was caused by a typo or a problem that can no longer be reproduced. While similar questions may be on-topic here, this one was resolved in a way less likely to help future readers.
Closed 8 years ago.
Improve this question
http://pastebin.com/De29tEAg This is my HTML
http://pastebin.com/88BxpnSM This is my CSS
I just started coding yesterday, so bear with me
I decided to create a button (since it's all I can pretty much do), and underneath it, there's this little green box, that is also part of the link. What is it, and how do I get rid of it?
Delete that full stop/dot/period immediately after the img and before the closing a tag.
I.e.
<img src="http://imgur.com/ukmXAgG.gif /">.
Should be
<img src="http://imgur.com/ukmXAgG.gif /">

Chrome support for input:checked+label? [closed]

Closed. This question is not reproducible or was caused by typos. It is not currently accepting answers.
This question was caused by a typo or a problem that can no longer be reproduced. While similar questions may be on-topic here, this one was resolved in a way less likely to help future readers.
Closed 8 years ago.
Improve this question
Has anyone else noticed an issue with Chrome's support of this?
input:checked+label
It works fine on with the first radio set, but fails on the second. See my js bin...
http://jsbin.com/egutap/2/edit
UPDATE: Updated jsbin link as I had a bug, but still seeing same issue.
This was a version specific bug with Version 25.0.1364.58 beta-m. Seems to be resolved in the latest version.