gpt4 book ai didi

html - CSS/PHP 链接样式

转载 作者:太空宇宙 更新时间:2023-11-04 03:46:05 25 4
gpt4 key购买 nike

我在 <style></style> 中有一个带样式的 html 页面 header 中的标记和正文中包含一些的 php block 。

在最上面我有这个:

a:link {color: inherit;}      /* unvisited link */
a:visited {color: inherit;} /* visited link */
a:hover {color: inherit;} /* mouse over link */
a:active {color: inherit;} /* selected link */

在导航栏(其中一个 php 包含)中,我得到了这个:

a:link {color:white; text-decoration:none;}      /* unvisited link */
a:visited {} /* visited link */
a:hover {text-decoration:underline;} /* mouse over link */
a:active {} /* selected link */

问题是我有一些 <a href> php 包含的同一页面上的电子邮件链接在白色背景上变白。我如何覆盖包含的 php 文件,以便我的电子邮件链接可以是黑色的,同时保留白色的导航栏链接?

加载顺序:

  1. 内联样式
  2. 正文
  3. php 包括
  4. <a href>变白的电子邮件链接

最佳答案

当您执行 PHP 包含时,基本上只是将 HTML 转储到文档中。因此,您需要将链接设为一个类,就像我上面提到的那样(并将该类添加到您的 CSS 文档中),或者您需要使用一些内联 CSS 来覆盖 CSS 文档中的一般规则集。此内联 CSS 需要包含在您包含的 PHP 文件本身中。

关于html - CSS/PHP 链接样式,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24088969/

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