Heim >Web-Frontend >HTML-Tutorial >这个要求怎么实现!!_html/css_WEB-ITnose

这个要求怎么实现!!_html/css_WEB-ITnose

WBOY
WBOYOriginal
2016-06-24 12:19:13903Durchsuche

我的要求:有2个div:div1和div2,其中div2在div1里面,现在要在div2中添加100个table,这些table只能水平排列,而且div2只能出现水平滚东条,如果有多个div2,div1只能出现垂直滚动条。怎么实现

下面是我的代码:

Private Sub Command5_Click()
    Dim w1 As String, i As Long
    w1 = "

" ''' 只能出现垂直滚动条
    w1 = w1 & "
" '' 只能出现水平滚动条
    For i = 1 To 100
        '''这100个table只能在div2中水平排列,不能折行!
        w1 = w1 & ""
        w1 = w1 & ""
        w1 = w1 & "
...
"
    Next
    w1 = w1 & "
"
    w1 = w1 & "
"
    WB.Document.body.innerHTML = w1
End Sub

回复讨论(解决方案)

这个是样式表的问题 在 div2 中添加样式就能解决 
建议去 样式表专区问下 或者 直接转过去

如果table的宽度和数量都知道,那很好解决。现在问题是 如果宽度和数量都是未知的怎么解决?

Stellungnahme:
Der Inhalt dieses Artikels wird freiwillig von Internetnutzern beigesteuert und das Urheberrecht liegt beim ursprünglichen Autor. Diese Website übernimmt keine entsprechende rechtliche Verantwortung. Wenn Sie Inhalte finden, bei denen der Verdacht eines Plagiats oder einer Rechtsverletzung besteht, wenden Sie sich bitte an admin@php.cn