2

我是来自比利时的学生。我正在创建我的投资组合网站,但遇到了一个无法修复的错误。我的老师建议我在这里发布一个问题寻求帮助。

正如您在屏幕截图中看到的,粗体文本表现得很奇怪。它应该像下面的文本部分一样。有没有什么办法解决这一问题?

http://imgur.com/aYiYu

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;
}

提前致谢!

净连

4

1 回答 1

1

我认为您需要将 h2 和 h3 的默认字体大小更改为相同的大小。尝试

 h2, h3 {
      font-size:14px; 
}

 #h2intro {
     font-weight: bold;

 }

 .h3intro {
     color: #463E3F; }

我相信您已将默认样式设置为 H2 和 H3。这就是您看到填充和大小差异的原因。如果您不想影响其他 h2 和 h3 标签,您还可以在 #h2intro 和 .h3intro 中设置大小。

在回复评论时,请在样式表底部使用以下样式。

#introtext h2.h2intro  
{ 
    font-size: 14px; 
    font-weight: bold;
    margin: 0px;
    padding: 0px; 
 } 

#introtext h3.h3intro 
{  
   font-size: 14px; 
   margin: 0px;
   padding: 0px;
   color: #463E3F; 
}  
于 2012-12-19T14:23:39.423 回答