+ 1
I'm having problems with the <em> tag in CSS
<em> in HTML does not respond to the code in my CSS page
9 Respuestas
+ 5
Remove that style and head tag in CSS
Then it will work fine:)
https://code.sololearn.com/WyJS2Y0lAhbr/?ref=app
+ 2
Ubosi, can you post the link to your code here, so that we can identify the problem properly and maybe help if possible?
+ 2
Use
filter: blur(some px);
Example:
filter:blur(1px);
rgba(0,255,0,1) -1px -2px 0.5em yellow;
this line is wrong you have to mention property and then it's value you can't just give values directly
change this line to ->
color:rgba(0,255,00,1);
box-shadow:-1px -2px 0.5em yellow; /*it will not have any effect since there is no box instead use text-shadow(
+ 2
You are welcome!!
+ 1
Thanks
+ 1
https://code.sololearn.com/Wxjjqqh7ev3Z/?ref=app
Please look at my code and help me get the blur effect
+ 1
Thanks again
0
Okay thanks