I’m having this tabs with target text color : white, for all tabs
and i want when a user hover the background would change to white and text color to grey for example,
because whenever i tried as the documentation suggested it over-write the first style i set
import dash
from dash import html
app = dash.Dash(__name__)
app.layout = html.Div(
'some random text, div changes background color and text color on hover',
className='div_hover',
style={'height': '600px'}
)
if __name__ == '__main__':
app.run(debug=True, port=8051)