作成日: 2020/08/26 最終更新日: 2020/08/26
文書種別
技術情報
詳細
本製品のアセンブリには、Bootstrap.cssの機能が予め埋め込まれており、スマートタグにて「BootStrap の使用」のチェックをONにするだけで適用されます。
マスターページを使用している場合、Visual Studioが参照するBootstrapとの競合を防ぐには、プロジェクトに含まれる「Bundle.config」ファイルにて、下記のようにBootstrap.cssの参照設定をコメントアウトしてください。
マスターページを使用している場合、Visual Studioが参照するBootstrapとの競合を防ぐには、プロジェクトに含まれる「Bundle.config」ファイルにて、下記のようにBootstrap.cssの参照設定をコメントアウトしてください。
<?xml version="1.0" encoding="utf-8" ?>
<bundles version="1.0">
<styleBundle path="~/Content/css">
<!--<include path="~/Content/bootstrap.css" />-->
<include path="~/Content/Site.css" />
</styleBundle>
</bundles>
<bundles version="1.0">
<styleBundle path="~/Content/css">
<!--<include path="~/Content/bootstrap.css" />-->
<include path="~/Content/Site.css" />
</styleBundle>
</bundles>
旧文書番号
85933