如何将CSS样式应用到我的第二页[about.php]?

时间:2017-04-07 11:53:06

标签: php html css

我的文件名: 1.)about.php 2.)styles.css

同样的样式表也适用于index.php。

我想设置页面的部分部分的样式。我通过设置[Eg。],。section-info {color:#555;}

的样式来尝试它

但它没有帮助。我还应该将样式表名称更改为styles.php吗? 在此先感谢。

<?php

/* Website Header */

    include ("include/header.php");
    
?>

<!-- Website Page-2 Main Content -->

<div class="wrapper">

                
            <section>
                <div class="section-info">
                    <h2>About Us</h2>
                        <p>blah...blah...bllah....</p>
                </div>
                
            </section>
           
    </div>
                    
   
 <?php
    /* Website Footer */
    
    include ("include/footer.php");
?>

2 个答案:

答案 0 :(得分:0)

尝试赋予它不同的类或内联样式。

答案 1 :(得分:0)

我有类似的问题。我创建了一个我使用的function here

然后我使用会返回$page = getPage("ab")的{​​{1}},然后您可以使用以下内容检查正在使用的页面:

about

将此代码放入<?php $page = getPage("ab"); if ($page == "about") { ?> <style type="text/css"> .section-info { background: #f00; } </style> <?php } ?> 页面的<head>内。这将应用您想要的任何代码到该页面。