-
Notifications
You must be signed in to change notification settings - Fork 22.5k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Remove docs for the <blink> element #26904
Conversation
Preview URLs
Flaws (126)Note! 3 documents with no flaws that don't need to be listed. 🎉 URL:
URL:
External URLs (1)URL:
(comment last updated: 2023-05-22 13:13:28) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Wow. This is kind of sad. So many memories.
* zh-cn: sync translated content * Remove <bgsound>; redirect to <audio> ref: mdn/content#26900 * Remove docs for the <blink> element ref: mdn/content#26904 * Remove docs for the <keygen> element ref: mdn/content#26902 * Remove docs for <spacer> element ref: mdn/content#26903 * chore: change Github -> GitHub ref: mdn/content#26896 --------- Co-authored-by: Allo <yin199909@aliyun.com>
The 90s are officially over. |
If someone wants to feel a bit of nostalgia from the golden age of the Internet, here's the doc available from Internet Archive: |
+1 for the usefulness of the page as a historical note. Even if the page is deleted, some people will inevitably want a similar feature and might come up with ad-hoc polyfills, which would likely lack accessibility considerations. The page could serve as a guidance for such people. That said, I don't think the polyfill in the original page was ideal either, because repeatedly changing Here is what I'm using for your information: .blink {
animation: 2s blink steps(2) infinite;
}
@media (prefers-reduced-motion) {
.blink {
animation: none;
}
}
@keyframes blink {
from {
opacity: 1;
}
to {
opacity: 0;
}
} |
For mdn/browser-compat-data#19658