user3505689
user3505689

Reputation: 97

how to set bottom line width of the border of the component?

This way is not working:

this.items = [
        {
            height: 35,
            layout: 'hbox',
            border: '0 0 3 0',
            items: [.....

Does anybody know how to show only bottom line of the border?

Upvotes: 1

Views: 58

Answers (1)

Randyka Yudhistira
Randyka Yudhistira

Reputation: 3652

maybe you can set it like this :

border: false,
componentCls: 'bottom-border',

and css

.bottom-border {
border-bottom: 1px solid #99BBE8;
}

Upvotes: 1

Related Questions