Make a radial gradient in edge [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 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

Related

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

HTML Bottom align [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Closed 5 years ago.
Edit the question to include desired behavior, a specific problem or error, and the shortest code necessary to reproduce the problem. This will help others answer the question.
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.
Improve this question
Im trying to align my image to Top and Bot, but it is not aligning to bottom.
My Code :
style='position:absulte;margin-top:-1px;width:80%;height:95%;bottom:10%'
(Bottom:10% is not working)
I have tried another solving topics on StackOverflow, none of them worked.
I found the solution by changing style
Previus code :
style='position:absulte;margin-top:-1px;width:80%;height:95%;bottom:10%'
New code:
style='width:900px;height:600px'

absolute root url css [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 need to use this image from Images folder.
I use it in Content/style.css
url('background.jpg')
it shows me following error: http://localhost:50260/Content/Images/background.jpg 404 (Not Found)
This should work
background: url('../images/background.jpg');
Your question is a little hard to understand. If you want to reference a image using the root, then something like this will work:
background: url('/images/background.jpg');
The / at the start of the url says to reference the root.

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 /">

Firefox - Font is changing on :hover [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 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";
}