Talking aobut this:
something
I would like this to show without the user having to click it. Is it possible?
Talking aobut this:
I would like this to show without the user having to click it. Is it possible?
Not that I am aware of, no.
The only way I know of would be through JavaScript, you could probably run an event that looks for a details tag and adds the attribute ‘open’ to it.
Something like this:
$('details').attr('open','')
Figuring out the right event to fire that on, is a different question.
¿Sigue siendo JS la solución “más fácil” en este momento?