assert css.no(Mozilla);
}
@Test
public void center() throws Exception {
MyCSS css = new MyCSS();
css.display.flex().justifyContent.center();
assert css.has("justify-content", "center");
assert css.has("-webkit-justify-content", "center");
assert css.has("-webkit-box-pack", "center");
assert css.has("-ms-flex-pack", "center");
assert css.no(Mozilla);
}