gpt4 book ai didi

php - 我无法将我的外部 CSS 文件链接到同一文件夹中具有输入类型的其他文件

转载 作者:行者123 更新时间:2023-11-28 03:31:57 25 4
gpt4 key购买 nike

我是一名新手程序员,我需要帮助将我的外部 CSS 与其他文件链接起来。我一直在阅读这里提出的所有与外部 CSS 相关的问题,但我仍然找不到答案

  1. 我已经将 style.css 文件与我要链接到的其他文件放在同一个文件夹中(没有子文件夹)

  2. 我已经在使用 <link rel="stylesheet" type="text/css" href="style.css"/>通过键入而不是从网络上复制代码

  3. 在我这里的问题中,我试图为我的 <textarea> 使用外部 CSS和我的 <input type="text>"

  4. 这跟我用localhost有关系吗?还是因为我将文件名保存为 .php?

我想我已经尝试了所有方法,但仍然无法正常工作。我错过了什么?非常感谢您的指导。谢谢。


我的代码的简化版本如下所示:

HTML

<html>
<head>
<link rel="stylesheet" type="text/css" href="style.css"/>
</head>

<body>
<input name="project" type="text" id="project"/>
</body>
</html>

CSS

input[type="text"]
{
width: 100%;
box-sizing: border-box;
-webkit-box-sizing: border-box;
-moz-box-sizing; border-box;
}

最佳答案

我在 How to import/include a CSS file using PHP code and not HTML code? 中找到了答案

由于我将文件保存为 .php, 我尝试使用

<style>
<?php include('style.css');?>
</style>

并且有效。谢谢大家..:)

关于php - 我无法将我的外部 CSS 文件链接到同一文件夹中具有输入类型的其他文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44689845/

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