EasyUI Forum

General Category => EasyUI for jQuery => Topic started by: MSAG on January 10, 2019, 08:33:36 AM



Title: [Solved]text align on tabs
Post by: MSAG on January 10, 2019, 08:33:36 AM
How can set text align on tab in Tab Position is left


Title: Re: text align on tabs
Post by: jarry on January 10, 2019, 06:16:01 PM
Override the CSS style to change the text align.
Code:
<style type="text/css">
.tabs-header-left .tabs li .tabs-inner{
text-align: right;
}
</style>


Title: Re: text align on tabs
Post by: MSAG on January 11, 2019, 05:43:32 AM
Thanks it's works