我有一个 ASP.Net-MVC 视图,div
如果该部分的数据可用,它会动态添加。要求是div
单行应容纳 3 秒。
看看这个http://jsfiddle.net/tKKDY/4/
我有这个 CSS
.section {
border: 1px solid Red;
width: 150px;
float: left;
}
像这样的html
<div class='section'>hello</div>
<div class='section'>
hello hello hello hello hello hello hello hello hello hello hello
</div>
<div class='section'>hello</div>
<div class='section'>fourth hello</div>
<div class='section'>hello</div>
问题是,文本内容不是固定长度的。因此,第四个div
在第三个之下div
。为了解决这个问题,我可以上这样的CSS
课。
.row {
width: 100%;
float: left;
}
使用它,我必须按照 jsfiddle 中的说明parentDiv1
制作内容。parentDiv2
我怎样才能做到这一点jQuery
?