有人可以告诉我我编码错误吗?一切正常,唯一的是顶部没有裕度。HTML:<div id="contact_us"> <!-- BEGIN CONTACT US --> <span class="first_title">Contact</span> <span class="second_title">Us</span> <p class="content">For any questions whatsoever please contact us through the following e-mail address:</p></br></br> <p class="e-mail">info@e-mail.com</p></br></br></br></br> <p class="read_more"><a href="underconstruction.html">Read More</a></p></div> <!-- END CONTACT US -->CSS:span.first_title { margin-top: 20px; margin-left: 12px; font-weight: bold; font-size: 24px; color: #221461;}span.second_title { margin-top: 20px; font-weight: bold; font-size: 24px; color: #b8b2d4;}
3 回答
SMILET
TA贡献1796条经验 获得超4个赞
span元素是display:inline;在默认情况下,你需要使它inline-block或block
更改您的CSS像这样
span.first_title {
margin-top: 20px;
margin-left: 12px;
font-weight: bold;
font-size:24px;
color: #221461;
/*The change*/
display:inline-block; /*or display:block;*/
}
- 3 回答
- 0 关注
- 769 浏览
相关问题推荐
添加回答
举报
0/150
提交
取消