How can I round edges of an iframe with TailwindCSS?

Viewed 11
1 Answers

You need to add the class to the iframe itself:

<div className="aspect-w-16 aspect-h-9 bg-red-800">
  <iframe
    className="rounded-lg"
    src="https://www.youtube.com/embed/r9jwGansp1E"
    allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture"
    allowFullScreen
  ></iframe>
</div>
Related