首页
学习
活动
专区
圈层
工具
发布
社区首页 >问答首页 >我的CSS没有显示

我的CSS没有显示
EN

Stack Overflow用户
提问于 2017-05-24 05:44:14
回答 2查看 58关注 0票数 2

我知道你已经有大约20个这样的问题,但似乎没有一个适合我的情况,那些似乎符合我的问题类别的问题没有帮助。

我将展示我的HTMLand我的CSS脚本(这些只是一个测试,但我重新检查了代码,一切似乎都正确),它似乎工作在一个超文本标记语言记事本上的结果,但当我保存并点击我的桌面上的铬图标,它不工作。

代码语言:javascript
复制
html {
    background-color:#373842;
}
h1 {
    font-family:Arial; color:white;text-decoration:underline;
}
img {
    border:1px solid white;
}
p {
    font-family:Arial;color:white;
}
h3 {
    font-family:Arial; color:white;text-decoration:underline;
}
li {
    font-family:Arial;color:white;
}
table, th, td {
    border:1px solid white;
}
th, td {
    padding:1px;color:white;
}
th {
    text-align:left;
}
caption {
    color:white;
}
h2 {
    font-family:Arial;color:white;
}
代码语言:javascript
复制
<!DOCTYPE html>
<html>
    <head>
        <title>Coding!</title>
        <link type=text/css rel=stylesheet href=Coding.css/>
    <body>
        <h1><em>Coding!</em></h1>
        <p>This is one of my most advanced HTML & CSS webpages!</p>
       <a href=www.smogon.com>
        <img src="https://cdn.discordapp.com/attachments/210717261084753920/308978986514645004/tumblr_o2x8zcNoFD1urr1ryo1_500.gif" 
        height="300" width="300"/>
        </a>
        <p>This is an amazing picture of clefairy/gengar in a creepy setting. If you click the picture, it will bring you to 
		smogon which is a Pokemon PvP Site. On this site you can find; Pokemon sets to use in PvP, Pokemon PvP Articles, a 
		damage calculator and much more!</p>
		<p>I plan to code Webpages, Games, Bots, Forums etc. much more when i master HTML, CSS and JavaScript. After this i plan to make webpages with HTML, CSS and JavaScript, make games with C++, and make forums with PHP.</p>
		<p>I am also looking for 1-4 people so i can make a small coding group, with them we would make games, webpages, forums etc. I know i said <strong>I</strong> would do these things in the future but coding is complex and it takes long to do (especially if you do it alone.) so if anyone knows how to code i would be greatful if we could make a group so you could help me with some of my projects.</p>
		<h3>What I Plan To Do:</h3>
		<ul>
		    <li>Make A Pokemon Game</li>
		    <li>Make A Website</li>
		    <li>Make Another Game</li>
		    <li>Make A Forum</li>
		    <li>Make A Bot</li>
		</ul>
		<p>I will think of a lot of other cool ideas, but for now we will just stick with those ones and see how they work out.</p>
		<p>You may not believe this but this tiny webpage is actually a lot of code on HTML and CSS!</p>
		<table>
		    <caption>Members of The Team</caption>
		    <tr>
		        <td>First Name</td>
		        <td>Last Name</td>
		        <td>Username</td>
		        <td>Age</td>
		    </tr>
		    <tr>
		        <td>Di Loni</td>
		        <td>Di Lorenzo</td>
		        <td>SH4RK1701 & TheProdigy</td>
		        <td>15</td>
		    </tr>
		</table>
		<p>Anyway that's all for now!</p>
		<h2>Cya Next Time!</h2>
    </body>
</html>

EN

回答 2

Stack Overflow用户

发布于 2017-05-24 05:49:28

关闭您的<head>标签</head>

代码语言:javascript
复制
html {
  background-color: #373842;
}

h1 {
  font-family: Arial;
  color: white;
  text-decoration: underline;
}

img {
  border: 1px solid white;
}

p {
  font-family: Arial;
  color: white;
}

h3 {
  font-family: Arial;
  color: white;
  text-decoration: underline;
}

li {
  font-family: Arial;
  color: white;
}

table,
th,
td {
  border: 1px solid white;
}

th,
td {
  padding: 1px;
  color: white;
}

th {
  text-align: left;
}

caption {
  color: white;
}

h2 {
  font-family: Arial;
  color: white;
}
代码语言:javascript
复制
<!DOCTYPE html>
<html>

<head>
  <title>Coding!</title>
  <link type=text/css rel=stylesheet href=Coding.css/>
</head>

<body>
  <h1><em>Coding!</em></h1>
  <p>This is one of my most advanced HTML & CSS webpages!</p>
  <a href=www.smogon.com>
    <img src="https://cdn.discordapp.com/attachments/210717261084753920/308978986514645004/tumblr_o2x8zcNoFD1urr1ryo1_500.gif" height="300" width="300" />
  </a>
  <p>This is an amazing picture of clefairy/gengar in a creepy setting. If you click the picture, it will bring you to smogon which is a Pokemon PvP Site. On this site you can find; Pokemon sets to use in PvP, Pokemon PvP Articles, a damage calculator and
    much more!</p>
  <p>I plan to code Webpages, Games, Bots, Forums etc. much more when i master HTML, CSS and JavaScript. After this i plan to make webpages with HTML, CSS and JavaScript, make games with C++, and make forums with PHP.</p>
  <p>I am also looking for 1-4 people so i can make a small coding group, with them we would make games, webpages, forums etc. I know i said <strong>I</strong> would do these things in the future but coding is complex and it takes long to do (especially
    if you do it alone.) so if anyone knows how to code i would be greatful if we could make a group so you could help me with some of my projects.</p>
  <h3>What I Plan To Do:</h3>
  <ul>
    <li>Make A Pokemon Game</li>
    <li>Make A Website</li>
    <li>Make Another Game</li>
    <li>Make A Forum</li>
    <li>Make A Bot</li>
  </ul>
  <p>I will think of a lot of other cool ideas, but for now we will just stick with those ones and see how they work out.</p>
  <p>You may not believe this but this tiny webpage is actually a lot of code on HTML and CSS!</p>
  <table>
    <caption>Members of The Team</caption>
    <tr>
      <td>First Name</td>
      <td>Last Name</td>
      <td>Username</td>
      <td>Age</td>
    </tr>
    <tr>
      <td>Di Loni</td>
      <td>Di Lorenzo</td>
      <td>SH4RK1701 & TheProdigy</td>
      <td>15</td>
    </tr>
  </table>
  <p>Anyway that's all for now!</p>
  <h2>Cya Next Time!</h2>
</body>

</html>

票数 1
EN

Stack Overflow用户

发布于 2017-05-24 05:46:54

您缺少head的结束标记。还要检查你的文件名。

票数 0
EN
页面原文内容由Stack Overflow提供。腾讯云小微IT领域专用引擎提供翻译支持
原文链接:

https://stackoverflow.com/questions/44145551

复制
相关文章

相似问题

领券
问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档