您可以使用更少和简单的代码执行此操作,如下所示:
.playlist{
width:100px;
height:100px;
float:right;
background:blue;
margin-right:20px;
}
.playlist + .video{
width:200px;
height:100px;
margin-left:20px;
background:green;
float:left;
}
.video{
width:200px;
height:100px;
margin:0 auto;
background:green;
}
Run Code Online (Sandbox Code Playgroud)