Css类不在一个范围内工作

时间:2015-03-26 20:05:36

标签: html css

仍然学习使用跨度在控制台浏览器中进行了一些调试,他们目前没有得到我在CSS类中给出的维度。我只是想知道我错过了什么,所以他们得到了我给他们的宽度和高度。谢谢

HTML CODE

<div id="content">        
                <div class="forum-group">
                    <h2 class="header-2">General Discussion</h2>
                    <ul class="child-forums">
                        <li class="child-forum">
                        <a class="forum-link" href="#">
                            <span class="forum-icon"></span>
                            <span class="forum-details">
                                <span class="forum-title"></span>
                                <span class="forum-desc"></span>
                            </span>
                        </a>

CSS代码

.forum-group{
    width:948px;
    height:259px;    
    margin-left:auto;
    margin-right:auto;
}
.header-2{
    width:948px;
    height:35px;
}
.child-forum{
    width:310px;
    height:106px;
    float:left;
    background-image: url(images/forum-child-background.jpg);
    opacity: 0.5;
    filter: alpha(opacity=50);
    margin-left:4px;
    margin-bottom:4px;
}
.child-forum:hover {
    opacity: 1.0;filter: alpha(opacity=100); 
}
.child-forums{
    width:948px;height:219px;
}
.forum-link{
    width:309px;height:106px;
display: inline-block; 


}
.forum-icon{
    width:60px;height:60px;
}
.forum-details{
    width:220px;height:43px;
}
.forum-title{
    width:217px;height:18px;
}
.forum-desc{
    width:217px;height:15px;
}

2 个答案:

答案 0 :(得分:7)

span元素是内联元素,因此不受宽度和高度属性的影响。

尝试将它们设置为display:inline-block,属性将生效。

答案 1 :(得分:2)

你应该给你的跨度:display:inline-block