Magento 2 +如何将Bootstrap CSS包含在最高位置

时间:2018-05-18 12:59:09

标签: magento2 magento-layout-xml

我正在通过default.head.blocks.xml

添加bootstrap css文件

文件包含成功但css文件显示在styles-m.css之后。

但我希望将其列入头号位置。 喜欢

bootstrap.min.css

calandar.css

styles-m.css

enter image description here

default_head_blocks.xml代码:

<page xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="urn:magento:framework:View/Layout/etc/page_configuration.xsd">
<head>
    <meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1.0, user-scalable=no"/>  
    <css src="css/bootstrap.min.css" />
    <css src="css/custom.css" />
    <script src="js::custom-theme.js"/>
</head>

请帮助我如何将bootstrap.min.css包含在第一个位置。

0 个答案:

没有答案