请参阅下面引用的代码http://jsbin.com/eveqe3/edit。
我需要以这样一种方式在项目div中显示文本,即文本仅出现在具有指定宽度的绿色框中,其余行需要隐藏。有什么建议请...
<style>
#container{
width : 220px;
}
.item{
float:left;
border: 1px solid #0a0;
width: 100px;
height: 12px;
padding 2px;
margin: 0px 2px;
}
.clearfix{
clear: both;
}
</style>
</head>
<body>
<div id="container">
<div class="item"> A very loooooooooooooooooooooong text </div>
<div class="item"> Another looooooooooooooooooooong text </div>
<div class="clearfix"> </div>
</div>
</body>
</html>