Quando clico no iframe que possui video do youtube ele perde a borda
Quando alguem clica no iframe ele perde a borda como faço para ele continuar com a borda?
<!DOCTYPE html>
<html lang="pt-br">
<head>
<meta charset="UTF-8">
<title></title>
<Style>
#fundo-branco{
background-color: white;
color: #8e4598;
width: 90%;
position: relative;
top: 0px;
left: 5%;
border-bottom-left-radius: 10px;
border-bottom-right-radius: 10px;
height: auto;
display: table;
z-index: 5;
padding-bottom: 30px;
padding-top: 80px;
}
#conjunto-videos{
width: 100%;
display: table;
height: auto;
left: 0;
top: 20px;
position: relative;
}
.videos-conjunto{
width: 600px;
position: relative;
height: 400px;
margin: 0 auto 50px auto;
left: -3%;
}
body{
background-color: #8e4598;
margin: 0;
}
.iframes-conjunto{
width: 100%;
height: 100%;
border-radius: 15px;
}
</Style>
</head>
<body>
<section id="fundo-branco">
<ul id="conjunto-videos">
<li class="videos-conjunto"><iframe class="iframes-conjunto" src="https://www.youtube.com/embed/p1quJZvHLes" frameborder="0" allowfullscreen></iframe></li>
</ul>
</section>
</body>
</html>Discussão (0)
Carregando comentários...