<div class='jfmfs-friend' id='123'>
<input type='checkbox'/>
<img src='id.jpg'/>
<div class='friend-name'>Himanshu Yadav</div>
</div>
我想将文本包装在friend-name
div 中。我试过了
div.friend-name {
margin-left: 10px;
white-space: pre-wrap;
}
这是父 div css:
.jfmfs-friend {
cursor:pointer;
display:inline-block;
float:left;
height:56px;
margin:3px;
padding:4px;
width:176px;
border: 1px solid #FFFFFF;
-moz-border-radius: 5px;
-webkit-border-radius: 5px;
-webkit-user-select:none;
-moz-user-select:none;
}
.jfmfs-friend div {
color:#111111;
font-size:11px;
overflow:hidden;
display:inline-block;
}