我的問題是關於使用Jquery的CSS,它將創建三列,從左到右,從上到下運行。目前數據全部放入一列。CSS和Jquery使用一個DIV創建3列
這裏是jquery的:
function smartColumns() {
$("ul.column").css({ 'width' : "100%"});
var colWrap = $("ul.column").width();
var colNum = Math.floor(colWrap/200);
var colFixed = Math.floor(colWrap/colNum);
$("ul.column").css({ 'width' : colWrap});
$("ul.column li").css({ 'width' : colFixed});
}
smartColumns();
$(window).resize(function() {
smartColumns();
});
這裏是其產生的數據的JavaScript功能,並且輸出它是在函數下面列出在一個div稱爲sidbar數據:
function createSidebarEntry(marker, name, address, city, state, zipcode, telephone, images, url) {
var div = document.createElement('div');
var html = "<ul class='column'><li><div class='block'><a href='http://" + url + "'>" + name + "</a><br/>" + address + "<br/>" + city + ", " + state + " " + zipcode + "<br/>" + (formatPhone(telephone)) + "</div></li></ul>";
div.innerHTML = html;
div.style.marginBottom = '5px';
return div;
}
<html>
<div id="sidebar"></div>
</html>
這裏是DIV使用的CSS:
#sidebar
{
width:665px;
font-size:10pt;
font-family:Arial;
color:#656668;
}
ul.column{
width: 100%;
padding: 0;
margin: 10px 0;
list-style: none;
}
ul.column li {
float: left;
width: 200px; /*Set default width*/
padding: 0;
margin: 5px 0;
display: inline;
}
.block {
height: 60px;
font-size: 1em;
margin-right: 10px; /*Creates the 10px gap between each column*/
padding: 0px;
background: #FFFFFF;
}
.block h2 {
font-size: 1.8em;
}
.block img {
/*Flexible image size with border*/
width: 89%; /*Took 1% off of the width to prevent IE6 bug*/
padding: 5%;
background:#fff;
margin: 0 auto;
display: block;
-ms-interpolation-mode: bicubic; /*prevents image pixelation for IE 6/7 */
}
#sidebar a:link
{
color:#192A96;
font-weight:bold;
font-size:10pt;
font-family:Tahoma;
text-decoration: underline;
}
#sidebar a:visited
{
color:#192A96;
font-weight:bold;
font-size:10pt;
font-family:Tahoma;
text-decoration: underline;
}
#sidebar a:hover
{
color:#192A96;
font-weight:bold;
font-size:10pt;
font-family:Tahoma;
text-decoration: underline;
}
#sidebar a:active
{
color:#192A96;
font-weight:bold;
font-size:10pt;
font-family:Tahoma;
text-decoration: underline;
}
這樣做的目標是創建3個列ns,在665px之內,並且數據從左到右,然後從上到下填充段落。 但是目前正在發生的事情是段落都被放置在一列左側和數據填充從上到下一列 感謝
嗨,感謝您的回覆。我之後所有的數據都是這樣的一段: –
所有的html數據都在一段中,下一個記錄集將在第2列中包含所有的html數據,然後在第3列中包含所有的html數據。然後下一個記錄集將移回到第一條記錄下方的第一列,並創建一個新的記錄集...我知道我現在變得很清楚了......我爲我的漫步道歉 –
嗨,我更新了我的答案 - 希望,這就是你要找的。 –