如何设置此课程的样式

时间:2017-02-02 23:21:13

标签: css twitter-bootstrap

enter image description here

我添加了一个,但我想给它与其他组件相同的样式。问题是我不知道如何在我的CSS中引用这个类。有帮助吗?谢谢!

2 个答案:

答案 0 :(得分:0)

请注意,它是无序列表(ul)的一部分。 您可以像这样设置样式:

Sub Macro2()
    Dim rowcount As Long
    Dim target As Variant, startcell4 As Range

    Set startcell4 = Cells(2, 1)
    rowcount = Range("E2").End(xlDown).Row
    For i = 2 To rowcount
        If Not Cells(i, 26) = Cells(i + 1, 26) Then
            target = Application.Match(Cells(i, 26), Worksheets(19).Range("A6:A3000"), 0)
            If Not IsError(target) Then
                startcell4.Offset(0, 17).Value = Worksheets(19).Cells(target + 6, 10)
                Set startcell4 = Cells(i + 1, 26)
            End If
        End If
    Next i
End Sub

答案 1 :(得分:0)

我找到了解决方案,只需这样:

.navbar-inverse .navbar-nav > li > form > a {
    ....
}