Toolbar Hidden but Div Exists

I hide the toolbar on tab, but the div is still there and takes up space.  This messes with my styling, how to I eliminate this or set height to 0.



1 Reply 1 reply marked as answer

SK Satheesh Kumar Balasubramanian Syncfusion Team December 3, 2020 06:39 AM UTC

Hi Stephen, 
  
Greetings from Syncfusion Support..! 
  
We have validated your reported query "Toolbar Hidden but Div Exists" and achieved your requirement by customizing the toolbar styles based on the Tabs "CssClass" property. 
  
Code snippet:  
<SfTab @ref="Tab" CssClass="BlazorTab" Height="390" LoadOn="ContentLoad.Demand"> 
....... 
....... 
....... 
</SfTab> 
  
<style> 
  
     .e-tab.BlazorTab .e-toolbar.e-tab-header { 
        display: none; 
    } 
</style> 

  
Kindly try the above sample and get back to us if you need further assistance. 
  
Regards, 
Satheesh Kumar B 



Marked as answer
Loader.
Up arrow icon