0

ユーザーの Facebook の友達を div にインポートしようとしています。Friend Divs正しく配置されていません。名前の長さに基づいて、ごちゃごちゃしています。

Note:I was not able to show full name of friends because it was hard to fit in a small Friend Div.

CSS

#jfmfs-friend-container {
    overflow:scroll;
    overflow-x: hidden;
    -ms-overflow-x: hidden;
    width:100%;
    height:7.6em;  
    color: #333;
    background-color: #F7F7F7;
    padding-top: 10px;
}
.jfmfs-friend {                
    cursor:pointer;
    float:left;
    height:3em;
    width:12em;
    font-size:11px;
    overflow:hidden;
    display:inline-block;
    margin-bottom: 0.40em;
}
.friend-name  {
    padding-left: 5px;
    width: 60px;
    font-weight: bold;
    color: #000;
    font-size: 12px;
}

.friend-checkbox {
    position: relative;
    vertical-align:middle;
    margin: 0px 0px 0px;
}

.friend-img {
    padding-left: 5px;
    width: 28px;
    height: 28px;
}

HTML

<div id="jfmfs-friend-container">
<div class="jfmfs-friend  " id="00000000000"><input class="friend-checkbox" type="checkbox"><img src="//graph.facebook.com/000000000/picture" class="friend-img"><span class="friend-name">hhhhhHy uuuu</span></div>
<div class="jfmfs-friend  " id="00000000012"><input class="friend-checkbox" type="checkbox"><img src="//graph.facebook.com/00000000012/picture" class="friend-img"><span class="friend-name">hhhhhHy uuuu</span></div>
<div class="jfmfs-friend  " id="00000000330"><input class="friend-checkbox" type="checkbox"><img src="//graph.facebook.com/00000000330/picture" class="friend-img"><span class="friend-name">hhhhhHy uuuu</span></div>
<div class="jfmfs-friend  " id="00000000044"><input class="friend-checkbox" type="checkbox"><img src="//graph.facebook.com/00000000044/picture" class="friend-img"><span class="friend-name">hhhhhHy uuuu</span></div>
<div class="jfmfs-friend  " id="00000000880"><input class="friend-checkbox" type="checkbox"><img src="//graph.facebook.com/00000000880/picture" class="friend-img"><span class="friend-name">hhhhhHy uuuu</span></div>
<div class="jfmfs-friend  " id="00000000770"><input class="friend-checkbox" type="checkbox"><img src="//graph.facebook.com/00000000770/picture" class="friend-img"><span class="friend-name">hhhhhHy uuuu</span></div>
</div>

実結果: ここに画像の説明を入力

4

1 に答える 1

2

に追加display:inline-block;してみてください.friend-name

このように- jsFiddle

.friend-name  {
    display:inline-block; 
    padding-left: 5px;
    width: 70px;
    font-weight: bold;
    color: #000;
    font-size: 12px;
}
于 2013-04-07T15:42:24.017 に答える