我正在使用带有Bootstrap的Bower包和一个ember应用程序中的主题。这个主题叫做admin lte,它看起来像加载adminlte.css
然后加载bootstrap.css
。
根据主题的例子,问题是Bootstrap应该是第一个。如何影响CSS加载顺序?
答案 0 :(得分:3)
你应该能够// creating the "actual" node I want to test (nothing changed here)
Node xmlNodeActual = XmlUtils.marshaltoW3CDomDocument(actual).getDocumentElement();
//...
// Instead of parsing the string, just unmarshal and marshal it once
Object expected = XmlUtils.unmarshal(new ByteArrayInputStream(strXmlNode.getBytes("utf-8")));
Node xmlNodeExpected = XmlUtils.marshaltoW3CDomDocument(expected).getDocumentElement();
if(!xmlNodeActual.isEqualNode(xmlNodeExpected)) {
// ...
}
他们,并且将保留订购。
有关此信息,请参阅Ember CLI guides section on style。