Twitter bootstrap caret size

前端 未结 4 1885
暗喜
暗喜 2020-12-30 23:35

I have a caret like this:



        
4条回答
  •  滥情空心
    2020-12-31 00:26

    If you want to style only 'one' caret ( or repetitive one kind) then you can use 'style' attribute to resize the caret. For eg:

    
    

    This will not affect other caret elements and only the tag containing this 'border-width' attribute will be affected!

    Alternatively, if you want to keep the style in your css file you can label id attribute:

    
    

    And add the styling in your .css as follows:

    #c1{
        border-width:8px;
    }
    

提交回复
热议问题