cakephp how can i include bootstrap framework css style to my app?

前端 未结 2 1492
别跟我提以往
别跟我提以往 2021-01-26 16:32

Anybody has integrated cake php with bootstrap framework/css style ?

I want to be able use advantages of bootstrap in cakephp views : like btn\'s and panels bootstrap s

2条回答
  •  长情又很酷
    2021-01-26 17:18

    If you want to use downloaded bootstrap library. Just put your bootstrap.min.css file inside /app/webroot/css/ folder.

       app/
          webroot/
                 css/ <-- here
    

    and then use it like below using HtmlHelper

    Html->css("bootstrap.min.css"); ?>
    

    OR

    If you want to use cdn the just add the below code inside head tag of .ctp file

    
    

    Cakephp 2.x -> HtmlHelper

    Hope this will help!

提交回复
热议问题