The gulp build is changing the location of the div

-1

After gulp build the column changes location

    
asked by anonymous 27.08.2017 / 21:57

1 answer

0

You have wrong syntax in HTML. Take a look at line 120, where you find <!--</div>--> that leaves a div element unclosed within td .

Then you have a </div> closer to line 198, and the same as table , between the last tr and </tbody> . This is invalid syntax.

    
28.08.2017 / 07:27