2

Magento 2フレームワークを使用してプログラムでボディタグにcssクラスを追加する方法を見つけようとしています

4

4 に答える 4

0

レイアウトで次のコードを使用して、プログラムで CSS クラスまたは ID を body タグに追加します。

   <body>
    <attribute name="class" value="custom-body-class" />
    <attribute name="id value="custom-html-id"/>

例 - レイアウト フォルダー MagentoDir > vendor > magento > module-customer > view > frontend >layout で customer_account.xml ファイルを開きます。

customer_account.xml ファイルを開いた後、css クラスを追加することがわかります

<page xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" layout="2columns-left" xsi:noNamespaceSchemaLocation="urn:magento:framework:View/Layout/etc/page_configuration.xsd" label="Customer My Account (All Pages)" design_abstraction="custom">
    <body>
        <attribute name="class" value="account"/>
于 2016-11-17T08:53:44.310 に答える