我是来自比利时的学生。我正在创建我的投资组合网站,但遇到了一个无法修复的错误。我的老师建议我在这里发布一个问题寻求帮助。
正如您在屏幕截图中看到的,粗体文本表现得很奇怪。它应该像下面的文本部分一样。有没有什么办法解决这一问题?
HTML
<div id="content">
<div class = "intro" id="introtext">
<h2 id="h2intro">My name is not Joren and I am a <span class="cyan">designer</span> from Belgium. </h2>
<h3 class="h3intro">I am passionate about making very <span class="cyan">simple and clean</span> designs that are easy on the eye and very simple to use.</h3>
</div><!--end intro-->
CSS
.cyan
{
color:#00d1e0;
}
#h2intro
{
font-weight: bold;
}
.h3intro
{
color: #463E3F;
}
提前致谢!
净连