表间距问题

时间:2014-05-05 21:22:18

标签: html css vb.net html-table

我已经设置了一个基于运行的存储过程填充的表。包含表格的div的宽度是页面的96%。表的宽度是100%。我遇到的问题是当我有两三个项目填充表格时,项目之间有一个巨大的空间。我在表中指定了空格,但这不起作用。我也遇到了黑色字体的问题。我把所有关于<a></a>超链接的CSS都删除了,但它仍然没有显示正确的字体颜色。有什么建议吗?

 Dim con5 As New SqlConnection
    Dim cmd5 As New SqlCommand
    Dim index As Integer = 0
    Dim dt1 As New DataSet




    con5.ConnectionString = ConfigurationSettings.AppSettings("ConnectionString")
    con5.Open()
    cmd5.Connection = con5
    cmd5.CommandType = CommandType.StoredProcedure


    cmd5.CommandText = "ProductBreakdown"

    cmd5.Parameters.Add(New SqlParameter("ProductID", SqlDbType.Int)).Value = Session("Product")
    cmd5.Parameters.Add(New SqlParameter("DesignName", SqlDbType.VarChar, 50)).Value = Request.QueryString("o")




    Dim da1 As SqlDataAdapter = New SqlDataAdapter(cmd5)
    da1.Fill(dt1)

    Dim table1 As New HtmlTable

    Dim numells As Integer = 6


    dv = New DataView(dt1.Tables(0))
    Dim tablestring = ""
    Dim strTable As New StringBuilder()
    Dim rowIsOpen As Boolean = False
    Dim itmCounter As Integer = 0
    strTable.Append("<table width=""100%"" ""cellspacing=10px"" ""cellpadding=10px""> ")

    For Each dr As DataRowView In dv



        Dim crossover As String = dr("CrossoverID").ToString()
        Dim picid As String = dr("Description").ToString()
        Dim picdescrip As String = dr("DesignColor").ToString().ToUpper()
        Dim collectionname As String = dr("CollectionDescription").ToString().ToUpper()
        Dim designinfo As String = dr("DesignName").ToString()
        Session("Collection") = dr("CollectionDescription").ToString()
        'collectionname.ToUpper()
        ' For every 5 items create a new row.
        If itmCounter Mod 4 = 0 Then
            ' Since we want new row, first close any open row
            If rowIsOpen Then strTable.Append("</tr>")

            ' Start a new row and mark row as open so we can keep track
            strTable.Append("<tr>")
            rowIsOpen = True
        End If


        strTable.Append("<td><a href=""Sheet Vinyl Tile Product Page.aspx?p=" & crossover & "&o=" & designinfo & """>")
        strTable.Append("<img src=""Images/Products/" + picid + ".jpg""width=""188"" height=""188"" border=""0"""" /><br/><br/>")
        strTable.Append("<b><color=Black>" & collectionname & "</b><br />")
        strTable.Append(picdescrip & "</a></td>")

        itmCounter += 1

    Next
    ' Next

    ' Make sure we close any open rows
    If rowIsOpen Then strTable.Append("</tr>")

    If strTable.Length > 0 Then
        product.InnerHtml = "<table>" & _
            strTable.ToString() & _
            "</table>"
    End If

1 个答案:

答案 0 :(得分:0)

表格在HTML中具有特定的作用,但您可能希望在这种情况下使用DIV。 DIV将根据浏览器的宽度自动浮动并重新定位。

以下是jsFiddle

中的示例

HTML

<div class="table">
    <div class="banner">The preferred developer response</div>
    <div class="cell">
        <img src="happy-icon.png">
    </div>
    ... 
    <div class="banner">Other emotions</div>
    <div class="cell">
        <img src="sad-icon.png">
    </div>
...
</div>

CSS

.table {
    margin-left: 50px;
    margin-right: 50px;
}
.banner {
    padding: 10px;
    margin-top: 20px;
    clear: both;
    background-color: #336699;
    color: white;
    font-weight: bold;
}
.cell {
    width:   150px;
    float: left;
}

您的代码可能如下所示

Dim con5 As New SqlConnection
Dim cmd5 As New SqlCommand
Dim index As Integer = 0
Dim dt1 As New DataSet

con5.ConnectionString = ConfigurationSettings.AppSettings("ConnectionString")
con5.Open()
cmd5.Connection = con5
cmd5.CommandType = CommandType.StoredProcedure
cmd5.CommandText = "ProductBreakdown"
cmd5.Parameters.Add(New SqlParameter("ProductID", SqlDbType.Int)).Value = Session("Product")
cmd5.Parameters.Add(New SqlParameter("DesignName", SqlDbType.VarChar, 50)).Value = Request.QueryString("o")


Dim da1 As SqlDataAdapter = New SqlDataAdapter(cmd5)
da1.Fill(dt1)

dv = New DataView(dt1.Tables(0))

Dim strTable As New StringBuilder()
Dim itmCounter As Integer = 0
strTable.Append("<div class=""table""> ")

For Each dr As DataRowView In dv

    Dim crossover As String = dr("CrossoverID").ToString()
    Dim picid As String = dr("Description").ToString()
    Dim picdescrip As String = dr("DesignColor").ToString().ToUpper()
    Dim collectionname As String = dr("CollectionDescription").ToString().ToUpper()
    Dim designinfo As String = dr("DesignName").ToString()
    Session("Collection") = dr("CollectionDescription").ToString()

    strTable.Append("<div class=""cell""><a href=""Sheet Vinyl Tile Product Page.aspx?p=" & crossover & "&o=" & designinfo & """>")
    strTable.Append("<img src=""Images/Products/" + picid + ".jpg""width=""188"" height=""188"" border=""0"""" /><br/><br/>")
    strTable.Append("<b><color=Black>" & collectionname & "</b><br />")
    strTable.Append(picdescrip & "</a></div>")

    itmCounter += 1

Next
strTable.Append("</div>")
product.InnerHtml = strTable.ToString()

味道相同但卡路里较少