为什么我的字体会改变颜色?

时间:2017-01-03 18:38:11

标签: css

这是我的HTML:



floatval("0.05");

h1 {
  font-family: "Trebuchet MS", Helvetica, sans-serif;
  font-size: 2em;
  font-style: italic;
}
h2 {
  font-family: Geneva, Arial, serif;
  font-size: 1.5em;
}
p {
  font-family: Georgia, “Times New Roman”, Times, serif;
  font-size: 1.5em;
}
p.important {
  font-size: 2.5em;
  font-weight: 900;
}
.typewriter {
  font-family: "Courier New", Courier, monospace;
}
.emphasized {
  font-style: italic;
}
.standout {
  color: #cc0000;
}




我似乎无法弄清问题是什么,我已经尝试了我能想到的一切......

非常感谢任何和所有帮助。我是网页设计的新手,我正在尽我所能自己学习....但我需要一些帮助。

1 个答案:

答案 0 :(得分:0)

您没有使用正确的引号:

a {
 display: table;
 background: #000;
 height:200px;
}
div {
 display:table-cell;
 vertical-align: middle;
}