ember.js - EmberJS body.ember-application CSS override -
it seems impossible override css of <body> tag of emberjs application. inherits ember-application class, , has many of browsers default values, including margin of 8px.
i want rid of margin around <body>, none of these 2 methods worked:
body { margin: 0; } body.ember-application { margin: 0; } !important not help either.
any thought of do? removing body tag not work, ember add together one.
the ember-application class has no css associated , putting in
body { margin: 0; } is plenty handle it. it's have css element winning css war, or have within element pushing padding making appear so.
example of margin 0 working: http://emberjs.jsbin.com/vaquhuwo/1/edit
css ember.js margin
No comments:
Post a Comment