Stop AngularJS inserting <span class=“ng-scope”></span> using ng-include
问题 I'm using the Foundation layout framework, which automatically floats the last sibling of .column to the right and I really appreciate this is a behaviour. However, AngularJS takes it upon itself to insert span.ng-scope after every div.column , which somehow causes browsers to consider the last span the last sibling of .column (even though it is not). Specifically the css in Foundation responsible for this is: [class*="column"] + [class*="column"]:last-child { float: right; } As I understand