Check out this code snippet:
HTML
<div class="medium-12 columns videos">
<ul class="medium-block-grid-2 text">
<li><iframe src="//www.youtube.com/embed/vid1" frameborder="0" allowfullscreen></iframe></li>
<li><iframe src="//www.youtube.com/embed/vid2" frameborder="0" allowfullscreen></iframe></li>
<li><iframe src="//www.youtube.com/embed/vid3" frameborder="0" allowfullscreen></iframe></li>
<li><iframe src="//www.youtube.com/embed/vid4" frameborder="0" allowfullscreen></iframe></li>
</ul>
</div>
CSS
.video [class*="block-grid-"] > li {
float: none;
}
I am attempting to target only the block grid within the "videos" div with the CSS rule `float: none;` instead of `float:left`, but I'm encountering difficulties making it work.
If I remove the .video selector at the beginning, the rule works but affects all block grids on the page. Any suggestions on how to solve this issue would be greatly appreciated.