Obligatory disclaimer: I am completely clueless about those things have mercy pls
Currently trying to add alt text accessible to screen readers, but not visually shown on my page, if that makes sense. Would the following work or nope?
.body {
content: url(...);
}
.body::after {
content: "Alt text";
display: none;
}