hey um. does marquee being deprecated mean it's not gonna be supported anymore in the future, or is it just that people aren't recommended to use it? if i still want to, say, have a bunch of blinkies marquee across the page should i use marquee or the alternative css animation method?
according to MDN: The HTML element is deprecated and its use is strongly discouraged. If you must create the effect of scrolling text or continuous elements, consider using CSS animations with CSS transforms instead of elements to smoothly animate content.
When a feature is depracated that means it's not longer supported and shouldn't be used. It will still work in the name of backwards compatibility with old or abandoned websites. You can still use it but theoritecally it could be deleted any day from now on. So it's better to use css animations
according to MDN: The HTML element is deprecated and its use is strongly discouraged. If you must create the effect of scrolling text or continuous elements, consider using CSS animations with CSS transforms instead of elements to smoothly animate content.
Source: https://developer.mozilla.org/en-US/docs/Web/HTML/Reference/Elements/marquee
When a feature is depracated that means it's not longer supported and shouldn't be used. It will still work in the name of backwards compatibility with old or abandoned websites. You can still use it but theoritecally it could be deleted any day from now on. So it's better to use css animations