gpt4 book ai didi

php - 我如何使用 <style> 标签将 css 代码添加到 php 文件,当前方法不起作用。

转载 作者:行者123 更新时间:2023-11-28 15:44:43 25 4
gpt4 key购买 nike

我将包括一个基本的示例代码;我试图了解如何将 css 编辑添加到 php 文件 - 在文件中。目前,当网页从服务器打开时,编辑不适用。

假设我希望以下代码中的变量 myBirthday 增加大小并将颜色更改为红色,我该如何修复此代码?

<head>
<title>
countdown
</title>
<style type=”text/css”>
#myBirthday
{
font-size: 100;
color: #FF0000;
}
</style>

</head>
<body>
<h1>
My birthday.
</h1>
<?php
$myBirthday = "10th October 1997";
echo "Tell you a secret, my birthday is " . $myBirthday . <br> "Today is " .date('d-m-y') . ". <br>";
?>
</body>

最佳答案

我将 myBirthday 变量包含在一个 span 中,我为其指定了 ID myBrirthday 以便使用您提供的 CSS 代码设置样式

<body>
<h1>
My birthday.
</h1>
<?php
$myBirthday = "10th October 1997";
echo "Tell you a secret, my birthday is <span id=\"myBirthday\">" . $myBirthday ."</span> <br> Today is " .date('d-m-y') . ". <br>";
?>
</body>

另请注意,在“echo”语句中必须对双引号进行转义。

关于php - 我如何使用 &lt;style&gt; 标签将 css 代码添加到 php 文件,当前方法不起作用。,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42983974/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com