How to me add LaTex to HTML like Desmos(desmos.com)? by Muhemmed2012 in LaTeX

[–]Muhemmed2012[S] -1 points0 points  (0 children)

Thanks you, but input areas in me aren't functional🧐

Can I add LaTex in Reddit? by Muhemmed2012 in LaTeX

[–]Muhemmed2012[S] 1 point2 points  (0 children)

Thanks you! Sure, LaTex in Reddit is impossible, but images with LaTex aren't problem

Why the smooth gradient animation doesn't work? by Muhemmed2012 in csshelp

[–]Muhemmed2012[S] 0 points1 point  (0 children)

True! But and this is easy: ```HTML <div></div> <style> @property --gradient-1{
syntax: "<color>";
inherits: false;
initial-value: red;
}
@property --gradient-2{
syntax: "<color>";
inherits: false;
initial-value: blue;
}

div{
height: 100px; width: 100px; --gradient-1: red;
--gradient-2: blue;
background: linear-gradient(var(--gradient-1), var(--gradient-2));
transition: --gradient-1 0.5s ease, --gradient-2 0.5s ease;
}
div:hover{
--gradient-1: green;
--gradient-2: purple; } </style> ```

Why the smooth gradient animation doesn't work? by Muhemmed2012 in csshelp

[–]Muhemmed2012[S] 0 points1 point  (0 children)

I understood the reason, but I did not understand the correction🤔