如何在html中链接css

jtoj6r0c  于 2022-12-24  发布在  其他
关注(0)|答案(2)|浏览(120)

这是我的网页链接https://dcnetwork.xyz.在这里我的CSS是不工作,我不知道为什么这些是我的文件index.html和style.css
第一节第一节第一节第一节第一次
HtmlCss

bkhjykvo

bkhjykvo1#

我能看到的唯一错误是你没有结束标记(第4行的末尾),只是在行尾添加了'〉'。
CSS文件加载和工作正确为我。
如果你看不到CSS的变化-有时它有助于做硬刷新/重新加载:

  • 适用于Windows的Chrome、Firefox或Edge:按Ctrl+F5(如果不起作用,请尝试Shift+F5或Ctrl+Shift+R)。
  • 适用于Mac的Chrome或Firefox:按Shift+Command+R组合键。
s4n0splo

s4n0splo2#

我们必须简单地写〈link r el=“stylesheet”h r e f="”在头部分只显示在下面

<!DOCTYPE html>
<html>
  <head>
  <link r e l=" s t l y e sheet" h r e f="styles.css">
  <title>Movie Booking</title>
  </head>
</html>

这里“styles.css”是包含c s s属性的c s s文件

相关问题