duancheng6500 2015-01-16 03:13
浏览 255
已采纳

如何在php中插入css代码?

I know how to insert html code in php using print <<<HERE HERE; construction. It means I can insert a link to css file. But is it possible to insert css code itself?

  • 写回答

3条回答

  • donglv6747 2015-01-16 04:11
    关注

    There are a couple of ways you can achieve this.

    Lets say you have an anchor tag <a href="..">My Href</a> and you want to add CSS to it based on certain instances.

    You can easily echo that css into the anchor element like so:

    <a <?php echo 'style="float: left;"'; ?> href="..">My Href</a>

    The output would be: <a style="float: left" href="...">My Href</a>

    You can do this with almost any HTML element.

    Now let's say you have a predefined CSS class you would like to echo into an anchor tag element.

    Let's say you have this CSS class in your stylesheet:

    .floatLeft {
        float: left;
    }
    

    You can simply echo that class into the anchor element like so:

    <a href="..." class="<?php echo 'floatLeft'; ?>">My Href</a>

    Which the output of that would be:

    <a href="..." class="floatLeft">My Href</a>

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(2条)

报告相同问题?

悬赏问题

  • ¥15 如何在scanpy上做差异基因和通路富集?
  • ¥20 关于#硬件工程#的问题,请各位专家解答!
  • ¥15 关于#matlab#的问题:期望的系统闭环传递函数为G(s)=wn^2/s^2+2¢wn+wn^2阻尼系数¢=0.707,使系统具有较小的超调量
  • ¥15 FLUENT如何实现在堆积颗粒的上表面加载高斯热源
  • ¥30 截图中的mathematics程序转换成matlab
  • ¥15 动力学代码报错,维度不匹配
  • ¥15 Power query添加列问题
  • ¥50 Kubernetes&Fission&Eleasticsearch
  • ¥15 報錯:Person is not mapped,如何解決?
  • ¥15 c++头文件不能识别CDialog