Is there a way to style the parameters of an <iframe>
using CSS?
I am trying to embed multi-track audio from archive.org. For example, like this:
<iframe src="https://archive.org/embed/art_of_war_librivox&playlist=1&list_height=200" width="100%" height="200"></iframe>
Styling the width and height in CSS is easy:
.multitrack iframe {
width: 100%;
height: 200px;
}
But what about the
&playlist=1&list_height=200
part? Do I have to specify that in the HTML every time? I would like to simplify it to just:
<div class="multitrack">
<iframe src="https://archive.org/embed/art_of_war_librivox"></iframe>
</div>
I need to embed it on AO3.org, which has strict guidelines. Please no suggestions of using other tools to solve the problem. If CSS can't do it, then I don't think it's possible at all.